UNPKG

object-storage-factory

Version:

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

10 lines (9 loc) 338 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;