blessed-components - v1.20.0
    Preparing search index...

    Interface KeymapHelpData<TCommand>

    interface KeymapHelpData<TCommand extends KeymapHelpCommand = KeymapHelpCommand> {
        capabilities?: Pick<TerminalCapabilities, "unicode">;
        commands: readonly TCommand[];
        onQueryChange?: (query: string) => void;
        query?: string;
        scope?: string;
    }

    Type Parameters

    Index

    Properties

    capabilities?: Pick<TerminalCapabilities, "unicode">
    commands: readonly TCommand[]
    onQueryChange?: (query: string) => void
    query?: string
    scope?: string