/** * Runs a function every 24 hours, to clean up stale, upload related files. * * @param {string} dirPath path to the directory which you want to clean */ export function startCleanUpJob(dirPath: string): void; export function startPeriodicPingJob({ urls, interval, count, staticPayload, version, processId, }: { urls: any; interval?: number; count: any; staticPayload?: {}; version: any; processId: any; }): Promise;