(config: string, t?: (key: KeyLabel) => string)
| 229 | |
| 230 | // KeybindV2 takes an array instead of a string |
| 231 | export function formatKeybindKeys(config: string, t?: (key: KeyLabel) => string): string[] { |
| 232 | return formatKeybindParts(config, t) |
| 233 | } |
| 234 | |
| 235 | function isEditableTarget(target: EventTarget | null) { |
| 236 | if (!(target instanceof HTMLElement)) return false |
nothing calls this directly
no test coverage detected