UNPKG

actionhero

Version:

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

15 lines (14 loc) 335 B
import { Action } from "./../index"; export declare class SleepTest extends Action { constructor(); run({ params }: { params: { sleepDuration: number; }; }): Promise<{ sleepStarted: number; sleepEnded: number; sleepDelta: number; sleepDuration: number; }>; }