UNPKG

@startpage/local-storage

Version:

Local storage management for your startpage

5 lines (4 loc) 239 B
import { SetStateAction, Dispatch } from "react"; type StateSetter<T> = Dispatch<SetStateAction<T>>; export declare const useStorage: <ValueType>(key: string, initialValue: ValueType) => [ValueType, StateSetter<ValueType>]; export {};