Files
kidsai/html/rechner/node_modules/node-cron/dist/cjs/time/time-matcher.d.ts
2025-06-24 15:43:32 +02: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;
}