UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

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