Interface INotebookContent

The notebook content.

interface INotebookContent {
    cells: ICell[];
    metadata: INotebookMetadata;
    nbformat: number;
    nbformat_minor: number;
    [key: string]: undefined | PartialJSONValue;
}

Hierarchy

  • PartialJSONObject
    • INotebookContent

Indexable

Properties

cells: ICell[]
nbformat: number
nbformat_minor: number