UNPKG

619 BPlain TextView Raw
1export {
2 default as Shortcut,
3 Props as ShortcutProps,
4 useShortcut,
5} from './Shortcut';
6
7export {
8 default as ShortcutProvider,
9 Props as ProviderProps,
10} from './ShortcutProvider';
11
12export {default as ShortcutManager} from './ShortcutManager';
13export {
14 default as Key,
15 AlphabetKey,
16 NumericKey,
17 ModifierKey,
18 HeldKey,
19 WhiteSpaceKey,
20 NavigationKey,
21 EditingKey,
22 UIKey,
23 DeviceKey,
24 IMEKey,
25 FunctionKey,
26 PhoneKey,
27 MultimediaKey,
28 AudioControlKey,
29 TVControlKey,
30 MediaControllerKey,
31 SpeechRecognitionKey,
32 DocumentKey,
33 ApplicationSelectorKey,
34 BrowserControlKey,
35} from './keys';