tiink
Version:
Tiink is NodeJS Job Schedule!
10 lines (9 loc) • 340 B
TypeScript
import { JobTime, JobAction } from './types';
export declare class Tiink {
private jobs;
addJob(name: string, time: JobTime, method: Function): void;
setJobAction(name: string, time: JobTime, method: Function): JobAction;
stopJob(name: string): void;
restartJob(name: string): void;
deleteJob(name: string): void;
}