kotlin-stdlib
JS
kotlin-stdlib
/
org.w3c.workers
/
Cache
Cache
JS
abstract
external
class
Cache
Exposes the JavaScript
Cache
to Kotlin
Constructors
Functions
Constructors
Cache
Link copied to clipboard
JS
fun
Cache
(
)
Functions
add
Link copied to clipboard
JS
fun
add
(
request
:
dynamic
)
:
Promise
<
Unit
>
add
All
Link copied to clipboard
JS
fun
addAll
(
requests
:
Array
<
dynamic
>
)
:
Promise
<
Unit
>
delete
Link copied to clipboard
JS
fun
delete
(
request
:
dynamic
,
options
:
CacheQueryOptions
=
definedExternally
)
:
Promise
<
Boolean
>
keys
Link copied to clipboard
JS
fun
keys
(
request
:
dynamic
=
definedExternally
,
options
:
CacheQueryOptions
=
definedExternally
)
:
Promise
<
Array
<
Request
>
>
match
Link copied to clipboard
JS
fun
match
(
request
:
dynamic
,
options
:
CacheQueryOptions
=
definedExternally
)
:
Promise
<
Any
?
>
match
All
Link copied to clipboard
JS
fun
matchAll
(
request
:
dynamic
=
definedExternally
,
options
:
CacheQueryOptions
=
definedExternally
)
:
Promise
<
Array
<
Response
>
>
put
Link copied to clipboard
JS
fun
put
(
request
:
dynamic
,
response
:
Response
)
:
Promise
<
Unit
>