drupflare/worker - v1.0.0
Preparing search index...
ops/page-store
PageKv
Type Alias PageKv
the KV surface this tier uses; narrowed so a test can supply a plain object
type
PageKv
=
{
delete
(
key
:
string
)
:
Promise
<
void
>
;
get
(
key
:
string
,
type
:
"text"
)
:
Promise
<
string
|
null
>
;
put
(
key
:
string
,
value
:
string
,
options
?:
{
expirationTtl
?:
number
}
,
)
:
Promise
<
void
>
;
}
Index
Methods
delete
get
put
Methods
delete
delete
(
key
:
string
)
:
Promise
<
void
>
Parameters
key
:
string
Returns
Promise
<
void
>
get
get
(
key
:
string
,
type
:
"text"
)
:
Promise
<
string
|
null
>
Parameters
key
:
string
type
:
"text"
Returns
Promise
<
string
|
null
>
put
put
(
key
:
string
,
value
:
string
,
options
?:
{
expirationTtl
?:
number
}
,
)
:
Promise
<
void
>
Parameters
key
:
string
value
:
string
Optional
options
:
{
expirationTtl
?:
number
}
Returns
Promise
<
void
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Methods
delete
get
put
drupflare/worker - v1.0.0
Loading...
the KV surface this tier uses; narrowed so a test can supply a plain object