| 4 | } |
| 5 | |
| 6 | export interface Logger { |
| 7 | isSilent: boolean; |
| 8 | isDebug: boolean; |
| 9 | |
| 10 | setSilent(silent: boolean): this; |
| 11 | setDebug(enabled: boolean): this; |
| 12 | |
| 13 | get warnings(): number; |
| 14 | get errors(): number; |
| 15 | |
| 16 | get stdout(): (NodeJS.WriteStream & { fd: 1 }) | undefined; |
| 17 | get stderr(): (NodeJS.WriteStream & { fd: 2 }) | undefined; |
| 18 | |
| 19 | debug(...args: unknown[]): this; |
| 20 | info(...args: unknown[]): this; |
| 21 | warn(...args: unknown[]): this; |
| 22 | error(...args: unknown[]): this; |
| 23 | |
| 24 | raw(...args: unknown[]): this; |
| 25 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…