UNPKG

liveperson-functions-cli

Version:
22 lines (21 loc) 704 B
import { Command } from '@oclif/core'; export default class Undeploy extends Command { static description: string; static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag<void>; yes: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; 'no-watch': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; static strict: boolean; static args: { name: string; }[]; static examples: string[]; private undeployController; /** * Runs the undeploy command and parses the passed functions and flags * @returns {Promise<void>} - undeploy command * @memberof Undeploy */ run(): Promise<void>; }