@plurid/plurid-data
Version:
Plurid Constants, Interfaces, Enumerations
17 lines (16 loc) • 441 B
TypeScript
import { SHORTCUTS, KEY_MODIFIERS } from '../../enumerations';
import { ShortcutNames } from '../../interfaces';
export declare const shortcutsNames: ShortcutNames;
export declare const defaultShortcuts: ({
type: SHORTCUTS;
key: string;
modifier?: undefined;
} | {
type: SHORTCUTS;
key: string;
modifier: KEY_MODIFIERS;
} | {
type: SHORTCUTS;
key: string;
modifier: KEY_MODIFIERS[];
})[];