UNPKG

gypsum

Version:

Simple and easy lightweight typescript server side framework on Node.js.

8 lines (7 loc) 225 B
import { IJob } from "./decorators"; export declare const JobsManger: { registerJob(parent: any, job: IJob): void; pauseJob(id: string): void; resumeJob(id: string): void; killJob(id: string): void; };