The type of data to be stored and retrieved. Defaults to any
.
Initializes a new instance of the Storage class.
This constructor checks if IndexedDB is supported in the current environment. If not, it throws an error. If supported, it creates a localforage instance with the specified configuration for the SEJ Editor.
If IndexedDB is not supported.
Asynchronously sets the provided data in the storage.
The data to be stored.
A promise that resolves when the data has been stored.
This method measures the time taken to store the data and logs it to the console if debugging is enabled.
Generated using TypeDoc
AbstractStorage is a generic class that provides an interface for storing and retrieving data using IndexedDB through the localForage library. It includes methods for synchronous and asynchronous data retrieval and storage, as well as a method for clearing the storage.