| 1 | interface Window { |
| 2 | attachEvent(event: string, listener: EventListener): boolean; |
| 3 | detachEvent(event: string, listener: EventListener): void; |
| 4 | [index: string]: EventListener | null; |
| 5 | } |
| 6 | |
| 7 | interface Document { |
| 8 | attachEvent(event: string, listener: EventListener): boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected