This commit is contained in:
Nuckyz 2024-05-11 05:56:26 -03:00
parent e11d651e33
commit 5676f45781
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -199,7 +199,7 @@ export type RelationshipStore = FluxStore & Stores.RelationshipStore & {
};
export type useStateFromStores = <T>(
stores: FluxStore[],
stores: any[],
mapper: () => T,
dependencies?: any[] | null,
isEqual?: (old: T, newer: T) => boolean