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