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

    Interface InitMessage

    Initialize the webview with document data

    interface InitMessage {
        body: {
            documentId?: string;
            isDatalayerNotebook?: boolean;
            notebookId?: string;
            serverUrl?: string;
            theme?: "light" | "dark";
            token?: string;
            untitled?: boolean;
            value: Uint8Array;
        };
        type: "init";
    }
    Index

    Properties

    Properties

    body: {
        documentId?: string;
        isDatalayerNotebook?: boolean;
        notebookId?: string;
        serverUrl?: string;
        theme?: "light" | "dark";
        token?: string;
        untitled?: boolean;
        value: Uint8Array;
    }
    type: "init"