Datalayer VS Code Extension - v0.0.14
    Preparing search index...

    Interface VirtualDocument

    Virtual document information tracked by LSPDocumentManager

    interface VirtualDocument {
        cellId: string;
        content: string;
        language: CellLanguage;
        notebookId: string;
        source: "notebook" | "lexical";
        uri: Uri;
        version: number;
    }
    Index

    Properties

    cellId: string

    Unique cell identifier

    content: string

    Current document content

    language: CellLanguage

    Cell language (python or markdown)

    notebookId: string

    Notebook identifier

    source: "notebook" | "lexical"

    Source type (notebook or lexical editor)

    uri: Uri

    Virtual document URI

    version: number

    Current document version