UNPKG

actionhero

Version:

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

14 lines (13 loc) 322 B
import { Action } from "./../index"; export declare class RandomNumber extends Action { name: string; description: string; outputExample: { randomNumber: number; stringRandomNumber: string; }; run(): Promise<{ randomNumber: number; stringRandomNumber: string; }>; }