@zowe/imperative
Version:
framework for building configurable CLIs
24 lines • 899 B
TypeScript
import { AuthCommandBuilder } from "./AuthCommandBuilder";
import { ICommandDefinition } from "../../../../cmd";
/**
* Used to build auth logout command definitions.
* Used automatically if you allow the "auth" command group to be generated
*/
export declare class AuthLogoutCommandBuilder extends AuthCommandBuilder {
/**
* Gets the "action" that this command builder is building.
* @return {string}: The "logout" action string
*/
getAction(): string;
/**
* Build the full command - includes action group and object command.
* @return {ICommandDefinition}: The command definition.
*/
buildFull(): ICommandDefinition;
/**
* Builds only the "auth" segment from the auth config.
* @return {ICommandDefinition}
*/
protected buildAuthSegmentFromConfig(): ICommandDefinition;
}
//# sourceMappingURL=AuthLogoutCommandBuilder.d.ts.map