| 180 | } |
| 181 | |
| 182 | interface CommandOption { |
| 183 | name: string; |
| 184 | alias?: string; |
| 185 | type?: ( |
| 186 | value: string, |
| 187 | previous: Record<string, BasicPrimitive | object>, |
| 188 | ) => Record<string, BasicPrimitive | object>; |
| 189 | configs?: ArgumentConfig[]; |
| 190 | negative?: boolean; |
| 191 | multiple?: boolean; |
| 192 | valueName?: string; |
| 193 | description?: string; |
| 194 | describe?: string; |
| 195 | negatedDescription?: string; |
| 196 | defaultValue?: string; |
| 197 | hidden?: boolean; |
| 198 | negativeHidden?: boolean; |
| 199 | } |
| 200 | |
| 201 | interface Env { |
| 202 | WEBPACK_BUNDLE?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected