actionhero
Version:
The reusable, scalable, and quick node.js API server for stateless and stateful applications
29 lines (28 loc) • 703 B
TypeScript
import { ParamsFrom, CLI } from "./../../../index";
export declare class GenerateCLICLI extends CLI {
name: string;
description: string;
example: string;
inputs: {
name: {
required: true;
description: string;
letter: string;
};
description: {
required: boolean;
description: string;
default: string;
letter: string;
};
example: {
required: boolean;
description: string;
default: string;
letter: string;
};
};
run({ params }: {
params: ParamsFrom<GenerateCLICLI>;
}): Promise<boolean>;
}