(...args: any[])
| 5 | |
| 6 | export namespace console { |
| 7 | export function log(...args: any[]) { |
| 8 | console.output({ |
| 9 | items: args, |
| 10 | level: "log", |
| 11 | skipCallers: 1, |
| 12 | }) |
| 13 | } |
| 14 | |
| 15 | export function warn(...args: any[]) { |
| 16 | console.output({ |
nothing calls this directly
no outgoing calls
no test coverage detected