mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
9 lines
295 B
TypeScript
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;
|