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

    Notebook state interface

    interface NotebookState {
        documentId?: string;
        isDatalayerNotebook: boolean;
        isInitialized: boolean;
        nbformat: unknown;
        notebookId: string;
        reset: () => void;
        selectedRuntime?: RuntimeWithCredits;
        serverUrl?: string;
        setDocumentId: (id: string) => void;
        setIsDatalayerNotebook: (isDatalayer: boolean) => void;
        setIsInitialized: (initialized: boolean) => void;
        setNbformat: (nbformat: unknown) => void;
        setNotebookId: (id: string) => void;
        setRuntime: (runtime: RuntimeWithCredits) => void;
        setServerUrl: (url: string) => void;
        setTheme: (theme: "light" | "dark") => void;
        setToken: (token: string) => void;
        theme: "light" | "dark";
        token?: string;
    }
    Index

    Properties

    documentId?: string
    isDatalayerNotebook: boolean
    isInitialized: boolean
    nbformat: unknown
    notebookId: string
    reset: () => void
    selectedRuntime?: RuntimeWithCredits
    serverUrl?: string
    setDocumentId: (id: string) => void
    setIsDatalayerNotebook: (isDatalayer: boolean) => void
    setIsInitialized: (initialized: boolean) => void
    setNbformat: (nbformat: unknown) => void
    setNotebookId: (id: string) => void
    setRuntime: (runtime: RuntimeWithCredits) => void
    setServerUrl: (url: string) => void
    setTheme: (theme: "light" | "dark") => void
    setToken: (token: string) => void
    theme: "light" | "dark"
    token?: string