(options: unknown)
| 26 | } |
| 27 | |
| 28 | export async function logoutCommand(options: unknown) { |
| 29 | return await wrapCommandAction("logoutCommand", LogoutCommandOptions, options, async (opts) => { |
| 30 | return await logout(opts); |
| 31 | }); |
| 32 | } |
| 33 | |
| 34 | export async function logout(options: LogoutCommandOptions) { |
| 35 | const config = readAuthConfigProfile(options.profile); |
no test coverage detected
searching dependent graphs…