| 5 | export type OutputFormat = "json" | "table" | "plain" |
| 6 | |
| 7 | export interface OutputError { |
| 8 | code: string |
| 9 | message: string |
| 10 | } |
| 11 | |
| 12 | export class CLIError extends Error { |
| 13 | readonly code: string |
nothing calls this directly
no outgoing calls
no test coverage detected