Type Alias NotebookCell

NotebookCell: {
    document: DocumentUri;
    executionSummary?: ExecutionSummary;
    kind: NotebookCellKind;
    metadata?: LSPObject;
}

A notebook cell.

A cell's document URI must be unique across ALL notebook cells and can therefore be used to uniquely identify a notebook cell or the cell's text document.

Type declaration

  • document: DocumentUri

    The URI of the cell's text document content.

  • OptionalexecutionSummary?: ExecutionSummary

    Additional execution summary information if supported by the client.

  • kind: NotebookCellKind

    The cell's kind

  • Optionalmetadata?: LSPObject

    Additional metadata stored with the cell.

    Note: should always be an object literal (e.g. LSPObject)

3.17.0