Defined in: hotkey.ts:431
Metadata for hotkey and sequence registrations. Includes name and description by default. Extend via declaration merging:
declare module '@tanstack/hotkeys' {
interface HotkeyMeta {
category?: string
icon?: string
}
}
optional description: string;
Defined in: hotkey.ts:435
Description of what this hotkey does
optional name: string;
Defined in: hotkey.ts:433
Human-readable name for this hotkey (e.g., "Save Document")