mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
28 lines
600 B
TypeScript
28 lines
600 B
TypeScript
export type KeyboardFocusScope =
|
|
| "terminal"
|
|
| "message-input"
|
|
| "command-center"
|
|
| "editable"
|
|
| "other";
|
|
|
|
export type MessageInputKeyboardActionKind =
|
|
| "focus"
|
|
| "dictation-toggle"
|
|
| "dictation-cancel"
|
|
| "voice-toggle"
|
|
| "voice-mute-toggle";
|
|
|
|
export type KeyboardActionId =
|
|
| "agent.new"
|
|
| "sidebar.toggle.left"
|
|
| "sidebar.toggle.right"
|
|
| "sidebar.navigate.shortcut"
|
|
| "command-center.toggle"
|
|
| "shortcuts.dialog.toggle"
|
|
| "message-input.action";
|
|
|
|
export type KeyboardShortcutPayload =
|
|
| { digit: number }
|
|
| { kind: MessageInputKeyboardActionKind }
|
|
| null;
|