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