DenoKeyValueStore
Deno-backed KeyValueStore layers using Web Storage APIs.
Layers
layerLocalStorage
Added in v4.0.0
Source
Signature
declare const layerLocalStorage: Layer.Layer<KeyValueStore.KeyValueStore>;layerSessionStorage
Added in v4.0.0
Source
Creates a KeyValueStore layer backed by sessionStorage, with values stored only for the current session.
Signature
declare const layerSessionStorage: Layer.Layer<KeyValueStore.KeyValueStore>;
Creates a
KeyValueStorelayer backed bylocalStorage, with values stored between sessions.