storybook/code/lib/api/shortcut.d.ts
2022-10-28 09:18:02 -04:00

9 lines
295 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;