VS Code API
    Preparing search index...

    Interface NotebookDocumentCellChange

    Describes a change to a notebook cell.

    interface NotebookDocumentCellChange {
        cell: NotebookCell;
        document: TextDocument | undefined;
        executionSummary: NotebookCellExecutionSummary | undefined;
        metadata: { [key: string]: any } | undefined;
        outputs: readonly NotebookCellOutput[] | undefined;
    }
    Index

    Properties

    The affected cell.

    document: TextDocument | undefined

    The document of the cell or undefined when it did not change.

    Note that you should use the onDidChangeTextDocument-event for detailed change information, like what edits have been performed.

    executionSummary: NotebookCellExecutionSummary | undefined

    The new execution summary of the cell or undefined when it did not change.

    metadata: { [key: string]: any } | undefined

    The new metadata of the cell or undefined when it did not change.

    outputs: readonly NotebookCellOutput[] | undefined

    The new outputs of the cell or undefined when they did not change.