mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
7 lines
288 B
TypeScript
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
|