(yargs: Argv)
| 12 | const describe = 'force login next time the specified (or default) profile is used' |
| 13 | |
| 14 | const builder = (yargs: Argv): Argv<CommandArgs> => |
| 15 | apiCommandBuilder(yargs) |
| 16 | .example([ |
| 17 | ['$0', 'log out of default profile'], |
| 18 | ['$0 --profile hub2', 'log out of profile named "hub2"'], |
| 19 | ]) |
| 20 | .epilog(buildEpilog({ command })) |
| 21 | |
| 22 | const handler = async (argv: ArgumentsCamelCase<CommandArgs>): Promise<void> => { |
| 23 | const command = await apiCommand(argv) |
nothing calls this directly
no test coverage detected