Interface OfflineRegionDownloadOptions

interface OfflineRegionDownloadOptions {
    load: OfflineRegionResourceLoader;
    logicalQuotaBytes: number;
    now?: (() => Date);
    onProgress?: ((progress: OfflineRegionDownloadProgress) => void);
    signal?: AbortSignal;
    store: OfflineRegionStore;
}

Properties

logicalQuotaBytes: number

Logical payload-byte ceiling, not a claim about physical store occupancy.

now?: (() => Date)
onProgress?: ((progress: OfflineRegionDownloadProgress) => void)

Observational callback; exceptions are ignored and never alter transaction state.

signal?: AbortSignal