(argv: string[])
| 13 | import { bootstrapRuntime } from './runtime/bootstrap-runtime.ts'; |
| 14 | |
| 15 | function shouldUseNonRedactedOutput(argv: string[]): boolean { |
| 16 | return argv.includes('--non-redacted'); |
| 17 | } |
| 18 | |
| 19 | async function runDoctor(): Promise<void> { |
| 20 | try { |