* Retrieve data object that corresponds to `url` from cache. If data object does not exist in * cache, fetch the data and then add to cache. * * @param url The url to the data to be cached. * @param storetype This field is required so that `ArtifactIndexedDBCache` can store the * ac
(url: string, storetype?: string, signal?: AbortSignal)
| 57 | * Note: This is an async function. |
| 58 | */ |
| 59 | fetchWithCache(url: string, storetype?: string, signal?: AbortSignal): Promise<any>; |
| 60 | |
| 61 | /** |
| 62 | * Fetch data from url and add into cache. If already exists in cache, should return instantly. |
no outgoing calls
no test coverage detected