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.

14 lines (11 loc) 230 B
import { StorageTypes } from '../enums/storage-types'; export interface IStorageItem<T> { key: string; value: T; expiry?: number; } export interface IStorageNotifier<T> { storage: StorageTypes; oldValue: T; newValue: T; }