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