I should have done this in the dev branch but it's whatever now

This commit is contained in:
Nuckyz 2024-05-07 06:30:24 -03:00
parent c65e1f88d2
commit b77b654df1
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -74,6 +74,6 @@ export const DraftStore = findStore<t.DraftStore>("DraftStore");
export const useStateFromStores = find(filters.byProps("useStateFromStores"), m => m.useStateFromStores) as <T>(
stores: t.FluxStore[],
mapper: () => T,
dependencies?: any,
dependencies?: any[],
isEqual?: (old: T, newer: T) => boolean
) => T;