UNPKG

node-cron

Version:

A Lightweight Task Scheduler for Node.js

9 lines (8 loc) 226 B
export declare class TimeMatcher { timezone?: string; pattern: string; expressions: any[]; constructor(pattern: string, timezone?: string); match(date: Date): boolean; getNextMatch(date: Date): Date; }