CacheStorage

abstract class CacheStorage : JsAny

Exposes the JavaScript CacheStorage to Kotlin

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun delete(cacheName: String): Promise<*>
Link copied to clipboard
fun has(cacheName: String): Promise<*>
Link copied to clipboard
fun keys(): Promise<*>
Link copied to clipboard
fun match(request: String, options: CacheQueryOptions): Promise<*>
fun match(request: Request, options: CacheQueryOptions): Promise<*>
Link copied to clipboard
fun open(cacheName: String): Promise<*>