liveperson-functions-cli
Version:
LivePerson Functions CLI
19 lines (18 loc) • 647 B
TypeScript
import { Command } from '@oclif/core';
export declare class Schedule extends Command {
static flags: {
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
functionName: import("@oclif/core/lib/interfaces").OptionFlag<string>;
cronExpression: 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 Schedule
*/
run(): Promise<void>;
}