UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

7 lines (4 loc) 211 B
import { Dispatch, SetStateAction } from 'react'; type SetValue<T> = Dispatch<SetStateAction<T>>; declare const useLocalStorage: <T>(key: string, initValue: T) => [T, SetValue<T>]; export { useLocalStorage };