| 1 | declare global { |
| 2 | interface CompilerNode { |
| 3 | type: string; |
| 4 | name: string; |
| 5 | arguments: []; |
| 6 | left: CompilerNode; |
| 7 | right: CompilerNode; |
| 8 | } |
| 9 | |
| 10 | interface EslintContext { |
| 11 | report: Function; |
nothing calls this directly
no outgoing calls
no test coverage detected