UNPKG

@synapsecloud/lib-react

Version:

Helper library for web applications built on React Js

9 lines (8 loc) 265 B
export declare function useBrowserStorage<T>(storageKey: string, dataVersion: string, storageInterface: Storage): { updatedAt: Date; key: string; version: string; get: () => NonNullable<T> | null; set: (data: T) => T; remove: () => void; };