Restore README and clean build artifacts from src directories

This commit is contained in:
defiQUG
2026-01-23 14:53:18 -08:00
parent aedf572b99
commit f61c3603d9
181 changed files with 76 additions and 2741 deletions

View File

@@ -1,18 +0,0 @@
/**
* Date utilities for effective date logic and rolling windows
*/
export declare function isEffectiveDate(date: Date, effectiveDate: Date, expiryDate?: Date): boolean;
export interface RollingWindow {
startDate: Date;
endDate: Date;
days: number;
}
export declare function calculateRollingWindow(referenceDate: Date, windowDays: number): RollingWindow;
export declare function isWithinRollingWindow(date: Date, window: RollingWindow): boolean;
export declare function filterDatesInWindow(dates: Date[], window: RollingWindow): Date[];
export declare function calculateRetentionExpiry(creationDate: Date, retentionDays: number): Date;
export declare function shouldArchive(creationDate: Date, archivalAfterDays: number, currentDate?: Date): boolean;
export declare function shouldDelete(creationDate: Date, retentionDays: number, currentDate?: Date): boolean;
export declare function formatISO20022Date(date: Date): string;
export declare function formatISO20022DateTime(date: Date): string;
//# sourceMappingURL=dates.d.ts.map