interface ICellState {
    adapter?: CellAdapter;
    isExecuting?: boolean;
    isKernelSessionAvailable?: boolean;
    outputsCount?: number;
    source?: string;
}

Properties

adapter?: CellAdapter
isExecuting?: boolean
isKernelSessionAvailable?: boolean
outputsCount?: number
source?: string