UNPKG

node-cron

Version:

A Lightweight Task Scheduler for Node.js

7 lines (6 loc) 209 B
export type TaskState = 'stopped' | 'idle' | 'running' | 'destroyed'; export declare class StateMachine { state: TaskState; constructor(initial?: TaskState); changeState(state: TaskState): void; }