storybook/lib/api/shortcut.d.ts
Norbert de Langen dc64f1c505
fixes
2022-05-26 12:39:17 +02:00

7 lines
288 B
TypeScript

export type KeyCollection = string[];
export function shortcutToHumanString(shortcut: KeyCollection): string
export function eventToShortcut(e: KeyboardEvent): KeyCollection | null
export function shortcutMatchesShortcut(inputShortcut: KeyCollection,
shortcut: KeyCollection): boolean