@uppy/companion
Version:
OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:
15 lines (14 loc) • 453 B
TypeScript
/**
* 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<void>;