UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

8 lines (7 loc) 242 B
/** * Triggers `onChange` when another browser tab instance mutates the LS value. */ export declare const useWatchLocalStorageValue: ({ key: watchKey, onChange, }: { key: string; onChange(newValue: string | null): void; }) => void;