(options: Parameters<typeof actions.proxy>[0])
| 40 | }; |
| 41 | |
| 42 | const proxyAction = async (options: Parameters<typeof actions.proxy>[0]): Promise<void> => { |
| 43 | await telemetry.trackCommand('proxy', () => actions.proxy(options)); |
| 44 | }; |
| 45 | |
| 46 | function triStateBooleanOption(flag: string, description: string) { |
| 47 | return new Option(flag, description).choices(['true', 'false']).argParser((value) => { |
nothing calls this directly
no test coverage detected