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

    Interface GetNotebookInfoResponseMessage

    Get notebook info response (MCP tool support)

    interface GetNotebookInfoResponseMessage {
        body: {
            cellCount: number;
            cellTypes: { code: number; markdown: number; raw: number };
            path: string;
        };
        requestId: string;
        type: "get-notebook-info-response";
    }
    Index

    Properties

    Properties

    body: {
        cellCount: number;
        cellTypes: { code: number; markdown: number; raw: number };
        path: string;
    }

    Notebook metadata

    Type Declaration

    • cellCount: number

      Total number of cells

    • cellTypes: { code: number; markdown: number; raw: number }

      Count of cells by type

      • code: number

        Number of code cells

      • markdown: number

        Number of markdown cells

      • raw: number

        Number of raw cells

    • path: string

      Notebook file path

    requestId: string

    Request ID for correlation

    type: "get-notebook-info-response"

    Message type discriminator