Type Alias DidOpenNotebookDocumentParams

DidOpenNotebookDocumentParams: {
    cellTextDocuments: TextDocumentItem[];
    notebookDocument: NotebookDocument;
}

The params sent in an open notebook document notification.

Type declaration

  • cellTextDocuments: TextDocumentItem[]

    The text documents that represent the content of a notebook cell.

  • notebookDocument: NotebookDocument

    The notebook document that got opened.

3.17.0