liveperson-functions-cli
Version:
LivePerson Functions CLI
22 lines (21 loc) • 694 B
TypeScript
import { Command } from '@oclif/core';
export declare class Deploy 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 deployController;
/**
* Runs the deploy command and parses the passed functions and flags
* @returns {Promise<void>} - deploy command
* @memberof Deploy
*/
run(): Promise<void>;
}