UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

23 lines (22 loc) 558 B
import { CLI, ParamsFrom } from "./../../../index"; export declare class GenerateActionCLI 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; }; }; run({ params }: { params: ParamsFrom<GenerateActionCLI>; }): Promise<boolean>; }