Variables
- default
Functions
- getAsync
- setAsync
Variables
Constdefault
default: State = ...
Functions
getAsync
-
getAsync<K extends keyof State>(property: K): Promise<State[K]>
Returns Promise<State[K]>
setAsync
-
setAsync<K extends keyof State>(property: K, value: State[K]): Promise<void>
Parameters
- property: K
- value: State[K]
Returns Promise<void>