| 95 | type LogHandler = (value: any) => void; |
| 96 | |
| 97 | interface Logger { |
| 98 | error: LogHandler; |
| 99 | warn: LogHandler; |
| 100 | info: LogHandler; |
| 101 | success: LogHandler; |
| 102 | log: LogHandler; |
| 103 | raw: LogHandler; |
| 104 | } |
| 105 | |
| 106 | interface Colors extends WebpackColors { |
| 107 | isColorSupported: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected