| 1 | import { argsParser } from '../scriptParser/argsParser'; |
| 2 | |
| 3 | interface IOptionItem { |
| 4 | key: string; |
| 5 | value: string | number | boolean; |
| 6 | } |
| 7 | interface IConfigItem { |
| 8 | command: string; |
| 9 | args: string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected