(...args: Parameters<typeof console.warn>)
| 86 | } |
| 87 | |
| 88 | function warn(...args: Parameters<typeof console.warn>): void { |
| 89 | _maybeLog('warn', ...args); |
| 90 | } |
| 91 | |
| 92 | function error(...args: Parameters<typeof console.error>): void { |
| 93 | _maybeLog('error', ...args); |
nothing calls this directly
no test coverage detected