KtGram
Toggle table of contents
7.8.0
js
Platform filter
js
Switch theme
Search in API
KtGram
webapps
/
eu.vendeli.webapps.core
/
CloudStorage
Cloud
Storage
external
interface
CloudStorage
(
source
)
Members
Functions
get
Item
Link copied to clipboard
abstract
fun
getItem
(
key
:
String
,
callback
:
(
e
:
Any
?
,
value
:
String
?
)
->
Unit
)
:
CloudStorage
get
Items
Link copied to clipboard
abstract
fun
getItems
(
key
:
Array
<
String
>
,
callback
:
(
e
:
Any
?
,
values
:
Array
<
String
>
?
)
->
Unit
)
:
CloudStorage
get
Keys
Link copied to clipboard
abstract
fun
getKeys
(
callback
:
(
e
:
Any
?
,
success
:
Array
<
String
>
?
)
->
Unit
)
:
CloudStorage
remove
Item
Link copied to clipboard
abstract
fun
removeItem
(
key
:
String
,
callback
:
(
e
:
Any
?
,
success
:
Boolean
?
)
->
Unit
)
:
CloudStorage
remove
Items
Link copied to clipboard
abstract
fun
removeItems
(
key
:
Array
<
String
>
,
callback
:
(
e
:
Any
?
,
success
:
Boolean
?
)
->
Unit
)
:
CloudStorage
set
Item
Link copied to clipboard
abstract
fun
setItem
(
key
:
String
,
value
:
String
,
callback
:
(
e
:
Any
?
,
success
:
Boolean
?
)
->
Unit
=
definedExternally
)
:
CloudStorage