Options for creating a KernelStatus object.

interface IOptions {
    onClick: (() => void);
    onKeyDown: ((event) => void);
}

Properties

Properties

onClick: (() => void)

A click handler for the item. By default we launch a kernel selection dialog.

Type declaration

    • (): void
    • Returns void

onKeyDown: ((event) => void)

A key press handler for the item. By default we launch a kernel selection dialog.

Type declaration