liveperson-functions-cli
Version:
LivePerson Functions CLI
18 lines (17 loc) • 602 B
TypeScript
import { Command } from '@oclif/core';
export default class Logout extends Command {
static description: string;
static flags: {
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
accountId: import("@oclif/core/lib/interfaces").OptionFlag<string>;
delete: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
static examples: string[];
private logoutController;
/**
* Runs the logout command and parses the passed flags
* @returns {Promise<void>} - logout command
* @memberof Logout
*/
run(): Promise<void>;
}