/** * Declaration for a system-level shortcut (not attached to any specific widget definition). * Hardcoded in Rust; exposed to the frontend via the `StateGetSystemShortcuts` command. * The user can override keys via `SluShortcutsSettings.shortcuts`. */ export type SystemShortcutDeclaration = { id: string; command: Array; label: string; defaultKeys: Array; /** * If true, user cannot change the keys for this shortcut. */ readonly: boolean; }; //# sourceMappingURL=SystemShortcutDeclaration.d.ts.map