| 63 | } |
| 64 | |
| 65 | interface CliOption { |
| 66 | name: string; |
| 67 | type: string; |
| 68 | description: string; |
| 69 | required: boolean; |
| 70 | default?: unknown; |
| 71 | enum?: unknown[]; |
| 72 | } |
| 73 | |
| 74 | interface JsonSchema { |
| 75 | type?: string | string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected