| 6 | import path from 'path'; |
| 7 | |
| 8 | export interface AbstractLogger { |
| 9 | debug: (...args: any[]) => void; |
| 10 | log: (...args: any[]) => void; |
| 11 | warn: (...args: any[]) => void; |
| 12 | error: (...args: any[]) => void; |
| 13 | } |
| 14 | export interface ImportMap { |
| 15 | imports: {[packageName: string]: string}; |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected