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

    Interface LocalKernelConnectedMessage

    Local kernel connected

    interface LocalKernelConnectedMessage {
        body: {
            kernelInfo?: { name: string; specFile?: string };
            runtime?: RuntimeJSON;
        };
        type: "local-kernel-connected";
    }
    Index

    Properties

    Properties

    body: {
        kernelInfo?: { name: string; specFile?: string };
        runtime?: RuntimeJSON;
    }

    Connection details

    Type Declaration

    • OptionalkernelInfo?: { name: string; specFile?: string }

      Kernel information

      • name: string

        Kernel display name

      • OptionalspecFile?: string

        Path to kernel spec file

    • Optionalruntime?: RuntimeJSON

      Runtime details

    type: "local-kernel-connected"

    Message type discriminator