| 9 | |
| 10 | // Mock DOM types for testing |
| 11 | interface MockKeyboardEvent { |
| 12 | code: string; |
| 13 | key: string; |
| 14 | ctrlKey: boolean; |
| 15 | altKey: boolean; |
| 16 | shiftKey: boolean; |
| 17 | metaKey: boolean; |
| 18 | repeat: boolean; |
| 19 | preventDefault: () => void; |
| 20 | stopPropagation: () => void; |
| 21 | } |
| 22 | |
| 23 | interface MockClipboardEvent { |
| 24 | type: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…