The available kernelSpec models.

Notes

See the Jupyter Server API.

interface ISpecModels {
    default: string;
    kernelspecs: {
        [key: string]: ISpecModel | undefined;
    };
}

Hierarchy

  • PartialJSONObject
    • ISpecModels

Properties

Properties

default: string

The name of the default kernel spec.

kernelspecs: {
    [key: string]: ISpecModel | undefined;
}

A mapping of kernel spec name to spec.

Type declaration