fixed so the code compiles

This commit is contained in:
2026-07-11 11:27:43 -04:00
parent 02ac5f9593
commit 1f99268588
1183 changed files with 281990 additions and 813 deletions
+6
View File
@@ -0,0 +1,6 @@
export type DownloadResult = {
lastModified: string;
sha256: string | null;
zippedSha256: string | null;
};
export declare function downloadZip(url: string, target: string, progressCb?: (progress: number) => void): Promise<DownloadResult>;