matchAllAsync

fun matchAllAsync(url: String = definedExternally, options: CacheQueryOptions = definedExternally): Promise<ReadonlyArray<Response>>(source)

The matchAll() method of the Cache interface returns a Promise that resolves to an array of all matching responses in the Cache object.

MDN Reference


fun matchAllAsync(url: URL, options: CacheQueryOptions = definedExternally): Promise<ReadonlyArray<Response>>(source)
fun matchAllAsync(request: Request, options: CacheQueryOptions = definedExternally): Promise<ReadonlyArray<Response>>(source)