Files
tongjiweb/server/node_modules/node-cron/dist/cjs/time/time-matcher.d.ts
T
2026-06-04 11:01:29 +08:00

9 lines
226 B
TypeScript

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