liveperson-functions-cli
Version:
LivePerson Functions CLI
23 lines (22 loc) • 757 B
TypeScript
import { Command } from '@oclif/core';
export default class Pull 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>;
all: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
static strict: boolean;
static args: {
name: string;
}[];
static examples: string[];
private pullController;
/**
* Runs the debug command and parses the passed functions and flags
* @returns {Promise<void>} - pull command
* @memberof Pull
*/
run(): Promise<void>;
}