interface NotebookCellDto {
    cellKind: CellKind;
    eol: string;
    handle: number;
    internalMetadata?: NotebookCellInternalMetadata;
    language: string;
    metadata?: NotebookCellMetadata;
    mime?: string;
    outputs: NotebookOutputDto[];
    source: string[];
    uri: UriComponents;
}

Properties

cellKind: CellKind
eol: string
handle: number
internalMetadata?: NotebookCellInternalMetadata
language: string
metadata?: NotebookCellMetadata
mime?: string
source: string[]
uri: UriComponents