| 19 | export type KeybindingFormat = "codemirror" | "hotkeys-hook"; |
| 20 | |
| 21 | interface KeybindingInputProps { |
| 22 | title: string; |
| 23 | description: string; |
| 24 | value: string; |
| 25 | onChange: (value: string) => void; |
| 26 | defaultValue?: string; |
| 27 | format?: KeybindingFormat; |
| 28 | } |
| 29 | |
| 30 | const KeybindingInput: React.FC<KeybindingInputProps> = ({ |
| 31 | title, |
nothing calls this directly
no outgoing calls
no test coverage detected