1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-10 18:06:22 +00:00
This commit is contained in:
Nuckyz 2024-05-07 22:10:05 -03:00
parent 8b6620ca2f
commit c2e12e2827
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -186,6 +186,6 @@ export class GuildStore extends FluxStore {
export type useStateFromStores = <T>( export type useStateFromStores = <T>(
stores: t.FluxStore[], stores: t.FluxStore[],
mapper: () => T, mapper: () => T,
dependencies?: any, dependencies?: any[] | null,
isEqual?: (old: T, newer: T) => boolean isEqual?: (old: T, newer: T) => boolean
) => T; ) => T;