Interface NotebookCellModelProps

interface NotebookCellModelProps {
    cellKind: CellKind;
    collapseState?: NotebookCellCollapseState;
    handle: number;
    internalMetadata?: NotebookCellInternalMetadata;
    language: string;
    metadata?: NotebookCellMetadata;
    outputs: CellOutput[];
    source: string;
    uri: URI;
}

Properties

cellKind: CellKind
handle: number
internalMetadata?: NotebookCellInternalMetadata
language: string
outputs: CellOutput[]
source: string
uri: URI