1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00
Files
antares/src/common/shortcuts.ts

14 lines
286 B
TypeScript

interface ShortcutRecord {
event: string;
keys: Electron.Accelerator;
description: string;
}
export const shortcuts: ShortcutRecord[] = [
{
event: 'open-connections-modal',
keys: 'Shift+CommandOrControl+Space',
description: 'Show all connections'
}
];