import type { SluHotkeyAction } from "./SluHotkeyAction.js"; import type { WidgetId } from "./WidgetId.js"; export type SluHotkey = { id: string; action: SluHotkeyAction; keys: Array; readonly: boolean; /** * This will be true for hotkeys intended to override system hotkeys. */ system: boolean; /** * If present this shortcut will be only available if the widget is enabled. */ attached_to: WidgetId | null; }; //# sourceMappingURL=SluHotkey.d.ts.map