Fix ImplicitRelationships & RelationshipNotifier (#3539)

This commit is contained in:
Amia 2025-07-04 15:04:12 +02:00 committed by GitHub
parent 1142cab05c
commit 310d8e6140
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 5 deletions

View file

@ -255,5 +255,5 @@ export class RelationshipStore extends FluxStore {
getSince(userId: string): string;
/** @returns Format: [userId: Enum value from constants.RelationshipTypes] */
getMutableRelationships(): Record<number, number>;
getMutableRelationships(): Map<string, number>;
}