| 2 | import type { GlobalFlags } from './types/flags'; |
| 3 | |
| 4 | export interface OptionDef { |
| 5 | flag: string; |
| 6 | description: string; |
| 7 | type?: 'string' | 'number' | 'boolean' | 'array'; |
| 8 | required?: boolean; |
| 9 | } |
| 10 | |
| 11 | export interface Command { |
| 12 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected