Options for creating a KernelStatus object.

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

Properties

Properties

onClick: () => void

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

onKeyDown: (event: KeyboardEvent<HTMLImageElement>) => void

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