Preparing search index...
The search index is not available
@kksh/api
@kksh/api
index
IKV
Interface IKV
A key-value store built on top of the Database API (based on sqlite)
interface
IKV
{
delete
:
(
key
:
string
)
=>
Promise
<
void
>
;
exists
:
(
key
:
string
)
=>
Promise
<
boolean
>
;
get
:
<
T
=
string
>
(
key
:
string
)
=>
Promise
<
undefined
|
null
|
T
>
;
set
:
(
key
:
string
,
value
:
string
)
=>
Promise
<
void
>
;
}
Index
Properties
delete
exists
get
set
Properties
delete
delete
:
(
key
:
string
)
=>
Promise
<
void
>
exists
exists
:
(
key
:
string
)
=>
Promise
<
boolean
>
get
get
:
<
T
=
string
>
(
key
:
string
)
=>
Promise
<
undefined
|
null
|
T
>
set
set
:
(
key
:
string
,
value
:
string
)
=>
Promise
<
void
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
delete
exists
get
set
@kksh/api
Loading...
A key-value store built on top of the Database API (based on sqlite)