* Fetch data from url and add into cache. If already exists in cache, should return instantly. * * @param url The url to the data to be cached. * @param storetype Only applies to `ArtifactIndexedDBCache`. Since `indexedDB` stores the actual * @param signal An optional AbortSignal to a
(url: string, storetype?: string, signal?: AbortSignal)
| 71 | * Note: This is an async function. |
| 72 | */ |
| 73 | addToCache(url: string, storetype?: string, signal?: AbortSignal): Promise<void>; |
| 74 | |
| 75 | /** |
| 76 | * check if cache has all keys in Cache |
no outgoing calls
no test coverage detected