( reconstruction: Reconstruction, options: ZipExportOptions, imageFiles?: Map<string, File> | null, wasmReconstruction?: WasmReconstructionWrapper | null, onProgress?: ZipExportProgressCallback )
| 202 | * @returns Blob containing the ZIP file |
| 203 | */ |
| 204 | export async function exportReconstructionZip( |
| 205 | reconstruction: Reconstruction, |
| 206 | options: ZipExportOptions, |
| 207 | imageFiles?: Map<string, File> | null, |
| 208 | wasmReconstruction?: WasmReconstructionWrapper | null, |
| 209 | onProgress?: ZipExportProgressCallback |
| 210 | ): Promise<Blob> { |
| 211 | return exportReconstructionZipFromWriters( |
| 212 | createReconstructionZipFileWriters(reconstruction, options, wasmReconstruction), |
| 213 | options, |
| 214 | imageFiles, |
| 215 | onProgress |
| 216 | ); |
| 217 | } |
| 218 | |
| 219 | /** |
| 220 | * Export reconstruction as a ZIP file and download it. |
no test coverage detected