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

    Interface KeyBinding

    interface KeyBinding {
        description: string;
        handler: () => void;
        id: string;
        keys: readonly string[];
    }
    Index

    Properties

    description: string

    Human-readable action description used by help views.

    handler: () => void

    Function invoked when any configured chord matches.

    id: string

    Stable action identifier.

    keys: readonly string[]

    Accepted chords, such as C-s or M-enter.