Home
last modified time | relevance | path

Searched refs:rootStateSubscribers (Results 1 – 4 of 4) sorted by relevance

/expo/packages/expo-router/build/global-state/
H A Drouter-store.js30 rootStateSubscribers = new Set(); field in RouterStore
47 this.rootStateSubscribers.clear();
105 for (const subscriber of this.rootStateSubscribers) {
139 this.rootStateSubscribers.add(subscriber);
140 return () => this.rootStateSubscribers.delete(subscriber);
H A Drouter-store.d.ts24 rootStateSubscribers: Set<() => void>;
H A Drouter-store.js.map1rootStateSubscribers = new Set<() => void>();\n storeSubscribers = new Set<() => void>();\n\n li…
/expo/packages/expo-router/src/global-state/
H A Drouter-store.tsx39 rootStateSubscribers = new Set<() => void>();
62 this.rootStateSubscribers.clear();
134 for (const subscriber of this.rootStateSubscribers) {
178 this.rootStateSubscribers.add(subscriber);
179 return () => this.rootStateSubscribers.delete(subscriber);