An options object for creating a command palette.

interface IOptions {
    commands: CommandRegistry;
    renderer?: CommandPalette.IRenderer;
}

Properties

Properties

commands: CommandRegistry

The command registry for use with the command palette.

A custom renderer for use with the command palette.

The default is a shared renderer instance.