liveperson-functions-cli
Version:
LivePerson Functions CLI
20 lines (19 loc) • 523 B
TypeScript
import { Command } from '@oclif/core';
export declare class Init extends Command {
static flags: {
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
};
static description: string;
static strict: boolean;
static args: {
name: string;
}[];
static examples: string[];
private initController;
/**
* Runs the init command and parses the passed functions
* @returns {Promise<void>} - init command
* @memberof Init
*/
run(): Promise<void>;
}