interface KeyItem {
    description: Record<string, string>;
    handler?: ((store: KeyboardnavStore, e: KeyboardEvent) => void | KeyboardnavChainAction);
    key: string;
}

Properties

description: Record<string, string>
handler?: ((store: KeyboardnavStore, e: KeyboardEvent) => void | KeyboardnavChainAction)
key: string