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