( InitClass: InitCommandClass )
| 111 | } |
| 112 | |
| 113 | export const parseArgv = async ( |
| 114 | InitClass: InitCommandClass |
| 115 | ): Promise< |
| 116 | Interfaces.ParserOutput< |
| 117 | any, |
| 118 | { |
| 119 | [name: string]: string |
| 120 | } |
| 121 | > |
| 122 | > => { |
| 123 | return oclifParser.parse( |
| 124 | InitClass.argv, |
| 125 | InitClass.ctor as Interfaces.Input<Interfaces.FlagOutput> |
| 126 | ) |
| 127 | } |
| 128 | |
| 129 | export const flagTestHelper = async ( |
| 130 | flag: string, |