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

    Interface ReadCellResponseMessage

    Read specific cell response (MCP tool support)

    interface ReadCellResponseMessage {
        body: {
            index: number;
            outputs?: string[];
            source: string;
            type: string;
        };
        requestId: string;
        type: "read-cell-response";
    }
    Index

    Properties

    Properties

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

    Response payload

    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: "read-cell-response"

    Message type discriminator