(argv: string[])
| 113 | } |
| 114 | |
| 115 | function runCli(argv: string[]): void { |
| 116 | import('./cli.ts').then(({ runCli }) => runCli(argv)).catch(handleStartupError); |
| 117 | } |
| 118 | |
| 119 | function handleStartupError(error: unknown): void { |
| 120 | process.stderr.write(`${error instanceof Error ? error.message : String(error)}\n`); |
no outgoing calls