| 9 | */ |
| 10 | |
| 11 | export interface ConsoleInterface { |
| 12 | log: (message: string) => void; |
| 13 | error: (message: string) => void; |
| 14 | } |
| 15 | |
| 16 | // Avoids outputting errors to the console but counts |
| 17 | // the number of logs and errors, which can be useful |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…