An interface for populating a kernel selector.

interface IKernelSearch {
    preference: IKernelPreference;
    sessions?: Iterable<Session.IModel>;
    specs: null | ISpecModels;
}

Properties

preference: IKernelPreference

The kernel preference.

sessions?: Iterable<Session.IModel>

The current running sessions.

specs: null | ISpecModels

The Kernel specs.