@forge/bridge
5.15.2-next.0-experimental-5b726e65.16.0-next.1
out/object-store/download.d.ts~
out/object-store/download.d.tsModified+8
Index: package/out/object-store/download.d.ts
===================================================================
--- package/out/object-store/download.d.ts
+++ package/out/object-store/download.d.ts
@@ -1,5 +1,13 @@
import type { DownloadResult } from './types';
+/**
+ * Download multiple objects from pre-signed URLs
+ *
+ * @param functionKey - Configuration object containing the backend function key to filter and generate download URLs
+ * @param keys - Array of object keys to download
+ * @returns Promise resolving to DownloadResult[]
+ * @throws {BridgeAPIError} When filtering fails or download encounters an error
+ */
export declare const download: ({ functionKey, keys }: {
functionKey: string;
keys: string[];
}) => Promise<DownloadResult[]>;