UNPKG

timerjobs

Version:

TimerJobs is a simple way to create recurring tasks that can react to events.

25 lines (24 loc) 652 B
import { IOptions, ITimerJobsOptions } from './interfaces'; import { EmitLevels } from './emit-level'; export declare class Options implements IOptions { autoStart: boolean; blocking: boolean; countdown: number; delimiter: string; emitLevel: EmitLevels; emitter: any; ignoreErrors: boolean; immediate: boolean; interval: number; infinite: boolean; namespace: string; reference: string; stopOn: string; stopCallback: Function; startOn: string; startCallback: Function; restartOn: string; restartCallback: Function; context: any; constructor(options?: ITimerJobsOptions); }