Store is a key-value store interface
Store
Clear the store.
{Promise}
Clear all prepare operation cache.
Use the commit() method to actually submit all prepare changes.
Get nodes for a key. Error is thrown when a key that does not exist is being accessed.
{Promise<Field[]>}
Get the tree root. Error is thrown when the root does not exist.
Get the value for a key. Error is thrown when a key that does not exist is being accessed.
Optional
Get values map, key is Field.toString().
{Promise<Map<string, V>>}
Prepare delete nodes for a key. Use the commit() method to actually submit changes.
Prepare delete the value for a key. Use the commit() method to actually submit changes.
Prepare put nodes for a key. Use the commit() method to actually submit changes.
Prepare put the value for a key. Use the commit() method to actually submit changes.
Prepare update the root. Use the commit() method to actually submit changes.
Store is a key-value store interface
Store