Download data with progress reporting (optional — falls back to get() if not implemented)
(
path: string,
onProgress?: (loaded: number, total: number) => void,
)
| 34 | |
| 35 | /** Download data with progress reporting (optional — falls back to get() if not implemented) */ |
| 36 | getWithProgress?( |
| 37 | path: string, |
| 38 | onProgress?: (loaded: number, total: number) => void, |
| 39 | ): Promise<Uint8Array>; |
no outgoing calls
no test coverage detected