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

    Information about a single opened document including its type, editor, and active state.

    interface OpenedDocumentInfo {
        editorType: EditorType;
        fileName: string;
        isActive: boolean;
        scheme: string;
        type: DocumentType;
        uri: string;
        viewType?: string;
    }
    Index

    Properties

    editorType: EditorType

    Editor type - which editor is being used to open this document.

    fileName: string

    File name (extracted from path).

    isActive: boolean

    Whether this is the currently active document.

    scheme: string

    URI scheme (e.g., 'file', 'datalayer').

    Document type classification.

    uri: string

    Document URI string.

    viewType?: string

    View type from VS Code tab input (e.g., "datalayer.jupyter-notebook", "jupyter-notebook").