We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c735a commit f5ec64bCopy full SHA for f5ec64b
src/Space.ts
@@ -137,6 +137,8 @@ class Space extends EventEmitter<SpaceEventMap> {
137
});
138
}
139
140
+ async updateProfileData(profileData: ProfileData): Promise<void>;
141
+ async updateProfileData(updateFn: (update: ProfileData) => ProfileData): Promise<void>;
142
async updateProfileData(profileDataOrUpdateFn: ProfileData | ((update: ProfileData) => ProfileData)): Promise<void> {
143
const self = await this.members.getSelf();
144
0 commit comments