| 171 | } |
| 172 | |
| 173 | interface ArgumentConfig { |
| 174 | description?: string; |
| 175 | negatedDescription?: string; |
| 176 | path?: string; |
| 177 | multiple?: boolean; |
| 178 | type: "enum" | "string" | "path" | "number" | "boolean" | "RegExp" | "reset"; |
| 179 | values?: EnumValue[]; |
| 180 | } |
| 181 | |
| 182 | interface CommandOption { |
| 183 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected