UNPKG

object-storage-factory

Version:

Object storage factory implemented with the same interface as browser's local storage.

13 lines (10 loc) 363 B
/** * @packageDocumentation Object storage factory implemented with the same interface as browser's local storage. */ /** * This interface provides access to object storage. It allows, for example, the addition, modification, or deletion of stored data items. * * @public */ export declare function objectStorageFactory(): Storage; export { }