Skip to content

Commit b22afe0

Browse files
committed
chore: run build
1 parent d368bf1 commit b22afe0

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed

dist/cache/resumable-processor.d.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export declare class ResumableProcessor {
2+
private cachePath;
3+
private snapshotInterval;
4+
constructor(cachePath?: string, snapshotInterval?: number);
5+
private ensureCacheDirectory;
6+
private getCachePath;
7+
private loadCache;
8+
private saveCache;
9+
process<T, R>(jobId: string, items: T[], processFn: (item: T) => Promise<R>, notifyFn: (result: R) => void): Promise<R[]>;
10+
clearCache(jobId: string): Promise<void>;
11+
}

dist/cache/resumable-processor.js

+65
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cache/resumable-processor.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)