| 167 | type EnumValue = string | number | boolean | EnumValueObject | EnumValue[] | null; |
| 168 | |
| 169 | interface EnumValueObject { |
| 170 | [key: string]: EnumValue; |
| 171 | } |
| 172 | |
| 173 | interface ArgumentConfig { |
| 174 | description?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected