| 365 | * Options for formatting hotkeys for display. |
| 366 | */ |
| 367 | export interface FormatDisplayOptions { |
| 368 | /** The target platform. Defaults to auto-detection. */ |
| 369 | platform?: 'mac' | 'windows' | 'linux' |
| 370 | /** Whether to use symbols for the display. Defaults to true. */ |
| 371 | useSymbols?: boolean |
| 372 | /** Override the separator between display tokens. Defaults to platform-specific formatting when null/undefined. */ |
| 373 | separatorToken?: string | null |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * Result of validating a hotkey string. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…