Open a cache storage for the provided name.
(cacheName: string)
| 14919 | interface CacheStorage { |
| 14920 | /** Open a cache storage for the provided name. */ |
| 14921 | open(cacheName: string): Promise<Cache>; |
| 14922 | /** Check if cache already exists for the provided name. */ |
| 14923 | has(cacheName: string): Promise<boolean>; |
| 14924 | /** Delete cache storage for the provided name. */ |
no outgoing calls
no test coverage detected