UNPKG

@ngneat/hotkeys

Version:

A declarative library for handling hotkeys in Angular applications

6 lines (5 loc) 236 B
type ModifierKey = 'shift' | 'control' | 'alt' | 'meta' | 'altleft' | 'backspace' | 'tab' | 'left' | 'right' | 'up' | 'down' | 'enter' | 'space' | 'escape'; export type CustomAliases = { [key in ModifierKey]?: string; }; export {};