(data: unknown)
| 30 | if (!quiet) s.message(`Status: ${status}`); |
| 31 | }, |
| 32 | result(data: unknown) { |
| 33 | if (quiet) console.log(JSON.stringify(data)); |
| 34 | else console.log(`\n${highlight(JSON.stringify(data, null, 2))}\n`); |
| 35 | }, |
| 36 | error(message?: string): never { |
| 37 | p.log.error(message ?? "Unknown error"); |
| 38 | process.exit(1); |
nothing calls this directly
no test coverage detected