| 53 | |
| 54 | // 快捷键解析结果接口 |
| 55 | export interface ParsedHotkey { |
| 56 | modifiers: string[]; |
| 57 | key: string; |
| 58 | isValid: boolean; |
| 59 | displayName: string; |
| 60 | errorMessage?: string; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * 解析快捷键字符串 |
nothing calls this directly
no outgoing calls
no test coverage detected