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

    Interface AllOpenedDocumentsContext

    Complete document context with active document and all opened documents

    interface AllOpenedDocumentsContext {
        activeDocument: OpenedDocumentInfo;
        allDocuments: OpenedDocumentInfo[];
        counts: {
            lexical: number;
            notebook: number;
            other: number;
            text: number;
            unknown: number;
        };
        totalCount: number;
    }
    Index

    Properties

    activeDocument: OpenedDocumentInfo

    The currently active document, or undefined if no document is active

    allDocuments: OpenedDocumentInfo[]

    Array of all opened documents

    counts: {
        lexical: number;
        notebook: number;
        other: number;
        text: number;
        unknown: number;
    }

    Count by type

    totalCount: number

    Total count of opened documents