kotlin-stdlib
JS
kotlin-stdlib
/
org.w3c.workers
/
CacheStorage
Cache
Storage
JS
abstract
external
class
CacheStorage
Exposes the JavaScript
CacheStorage
to Kotlin
Constructors
Functions
Constructors
Cache
Storage
Link copied to clipboard
JS
fun
CacheStorage
(
)
Functions
delete
Link copied to clipboard
JS
fun
delete
(
cacheName
:
String
)
:
Promise
<
Boolean
>
has
Link copied to clipboard
JS
fun
has
(
cacheName
:
String
)
:
Promise
<
Boolean
>
keys
Link copied to clipboard
JS
fun
keys
(
)
:
Promise
<
Array
<
String
>
>
match
Link copied to clipboard
JS
fun
match
(
request
:
dynamic
,
options
:
CacheQueryOptions
=
definedExternally
)
:
Promise
<
Any
?
>
open
Link copied to clipboard
JS
fun
open
(
cacheName
:
String
)
:
Promise
<
Cache
>