storybook/code/lib/api/shortcut.d.ts
Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +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