Interface ICommandPalette

The interface for a Jupyter Lab command palette.

interface ICommandPalette {
    placeholder: string;
    activate(): void;
    addItem(options): IDisposable;
}

Properties

Methods

Properties

placeholder: string

The placeholder text of the command palette's search input.

Methods