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