Files
tautkan-kanban/server/dist/cron/cleanup.d.ts
T
Power BI Dev 88c7c653c2 first init
2026-08-17 10:52:09 +07:00

10 lines
412 B
TypeScript

/**
* Clean up inactive boards that have not been touched/updated in the last 30 days.
* Cascades to delete all associated columns and tickets.
*/
export declare function cleanupInactiveBoards(daysInactive?: number): Promise<number>;
/**
* Schedule periodic TTL cleanup in the server process (runs every 24 hours).
*/
export declare function startTtlCleanupSchedule(intervalHours?: number): NodeJS.Timeout;