We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c70144f commit 54a5834Copy full SHA for 54a5834
src/auth/auth.ts
@@ -424,7 +424,7 @@ export class BaseAuth<T extends AbstractAuthRequestHandler> {
424
* @return {Promise<void>} A promise that resolves when the operation completes
425
* successfully.
426
*/
427
- public setCustomUserClaims(uid: string, customUserClaims: object): Promise<void> {
+ public setCustomUserClaims(uid: string, customUserClaims: object | null): Promise<void> {
428
return this.authRequestHandler.setCustomUserClaims(uid, customUserClaims)
429
.then(() => {
430
// Return nothing on success.
0 commit comments