UNPKG

cronz-scheduler

Version:

A lightweight cron and interval scheduler for Node.js written in TypeScript.

10 lines (9 loc) 197 B
export type CronJob = { name: string; expression?: string; intervalSeconds?: number; callback: () => void; endAt?: Date; runCount?: number; timerId?: NodeJS.Timeout; };