version_final_sans_test

This commit is contained in:
2025-09-23 14:51:00 +02:00
parent b4061e8aff
commit 6577083b06
184 changed files with 19853 additions and 512 deletions

View File

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