Interface OfflineRegionStore

Storage adapter boundary; no browser or platform storage is selected by the SDK.

interface OfflineRegionStore {
    beginWrite(regionId: string): Promise<OfflineRegionWriteTransaction>;
    inventory(): Promise<OfflineRegionCacheInventory>;
}

Methods