* Type guard to check if an array contains only valid KeybindingBlocks.
(arr: unknown)
| 106 | * Type guard to check if an array contains only valid KeybindingBlocks. |
| 107 | */ |
| 108 | function isKeybindingBlockArray(arr: unknown): arr is KeybindingBlock[] { |
| 109 | return Array.isArray(arr) && arr.every(isKeybindingBlock) |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Get the path to the user keybindings file. |
no outgoing calls
no test coverage detected