| 1 | export interface Logger { |
| 2 | warn: (...args: any[]) => void; |
| 3 | error: (...args: any[]) => void; |
| 4 | assertString: (...args: any[]) => void; |
| 5 | } |
| 6 | |
| 7 | export const user: () => Logger; |
| 8 | export const dev: () => Logger; |
nothing calls this directly
no outgoing calls
no test coverage detected