UNPKG

browser-storage-utilities

Version:

A front-end library that provides utility methods to facilitate CRUD operations to data stored in the browser, and more.

8 lines (7 loc) 196 B
import { IStorageItem } from '../interfaces/storage-typings'; export declare class StorageItem<T> { key: string; value: T; expiry?: number; constructor(entity: IStorageItem<T>); }