| 19 | } |
| 20 | |
| 21 | interface FlagSchema { |
| 22 | booleans: Set<string>; |
| 23 | numbers: Set<string>; |
| 24 | arrays: Set<string>; |
| 25 | } |
| 26 | |
| 27 | function buildSchema(options: OptionDef[]): FlagSchema { |
| 28 | const booleans = new Set<string>(); |
nothing calls this directly
no outgoing calls
no test coverage detected