Interface AnnotatedCacheStorage
interface AnnotatedCacheStorage { delete(cacheName): Promise<boolean>; has(cacheName): Promise<boolean>; open(cacheName): Promise<AnnotatedCache>; } Methods
delete
- delete(cacheName): Promise<boolean>
Returns Promise<boolean>
has
- has(cacheName): Promise<boolean>
Returns Promise<boolean>
See
MDN for spec