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

    Interface ReadAllCellsResponseMessage

    Read all cells response (MCP tool support)

    interface ReadAllCellsResponseMessage {
        body: {
            index: number;
            outputs?: string[];
            source: string;
            type: string;
        }[];
        requestId: string;
        type: "get-cells-response";
    }
    Index

    Properties

    Properties

    body: { index: number; outputs?: string[]; source: string; type: string }[]

    Array of cell data

    Type Declaration

    • index: number

      Cell index

    • Optionaloutputs?: string[]

      Cell outputs (for code cells)

    • source: string

      Cell source content

    • type: string

      Cell type

    requestId: string

    Request ID for correlation

    type: "get-cells-response"

    Message type discriminator