Deletes the value associated with the given key.
The key to delete the value for.
Checks if a key exists in the store.
The key to check.
True if the key exists, false otherwise.
Retrieves the value associated with the given key.
The key to retrieve the value for.
The value associated with the key, or null if the key does not exist.
Retrieves the JSON value associated with the given key.
The key to retrieve the JSON value for.
The JSON value associated with the key.
Retrieves all the keys in the store.
An array of all the keys in the store.
Sets the value for the given key.
The key to set the value for.
The value to set. Can be a Uint8Array, string, or object.
Sets the JSON value for the given key.
The key to set the JSON value for.
The JSON value to set.
Interface representing a key-value store with various utility methods. Store