UNPKG

zustand-sync-tabs

Version:

Zustand middleware to easily sync Zustand state between tabs and windows

12 lines (11 loc) 385 B
import { StateCreator } from "zustand"; export type SyncTabsOptionsType = { name: string; /** @deprecated */ regExpToIgnore?: RegExp; include?: (string | RegExp)[]; exclude?: (string | RegExp)[]; }; type SyncTabsType = <T>(f: StateCreator<T, [], []>, options: SyncTabsOptionsType) => StateCreator<T, [], []>; export declare const syncTabs: SyncTabsType; export {};