@@ -647,23 +647,23 @@ export class User extends Object {
647647 smsCode : string
648648 ) : Promise < User > ;
649649 static loginWithAuthData (
650- authData : Object ,
650+ authData : object ,
651651 platform : string ,
652652 options ?: OAuthLoginOptions
653653 ) : Promise < User > ;
654654 static signUpOrlogInWithAuthData (
655- authData : Object ,
655+ authData : object ,
656656 platform : string ,
657657 options ?: OAuthLoginOptions
658658 ) : Promise < User > ;
659659 static loginWithAuthDataAndUnionId (
660- authData : Object ,
660+ authData : object ,
661661 platform : string ,
662662 unionId : string ,
663663 unionLoginOptions ?: UnionLoginOptions
664664 ) : Promise < User > ;
665665 static signUpOrlogInWithAuthDataAndUnionId (
666- authData : Object ,
666+ authData : object ,
667667 platform : string ,
668668 unionId : string ,
669669 unionLoginOptions ?: UnionLoginOptions
@@ -706,12 +706,12 @@ export class User extends Object {
706706
707707 loginWithWeapp ( options ?: OAuthLoginOptions ) : Promise < User > ;
708708 loginWithAuthData (
709- authData : Object ,
709+ authData : object ,
710710 platform : string ,
711711 options ?: OAuthLoginOptions
712712 ) : Promise < User > ;
713713 loginWithAuthDataAndUnionId (
714- authData : Object ,
714+ authData : object ,
715715 platform : string ,
716716 unionId : string ,
717717 unionLoginOptions ?: UnionLoginOptions
@@ -724,9 +724,9 @@ export class User extends Object {
724724 isAnonymous ( ) : boolean ;
725725 isCurrent ( ) : boolean ;
726726
727- associateWithAuthData ( authData : Object , platform : string ) : Promise < User > ;
727+ associateWithAuthData ( authData : object , platform : string ) : Promise < User > ;
728728 associateWithAuthDataAndUnionId (
729- authData : Object ,
729+ authData : object ,
730730 platform : string ,
731731 unionId : string ,
732732 unionLoginOptions ?: UnionOptions
@@ -750,7 +750,7 @@ export class User extends Object {
750750
751751 follow ( user : User | string , authOptions ?: AuthOptions ) : Promise < void > ;
752752 follow (
753- options : { user : User | string ; attributes ?: Object } ,
753+ options : { user : User | string ; attributes ?: object } ,
754754 authOptions ?: AuthOptions
755755 ) : Promise < void > ;
756756 unfollow ( user : User | string , authOptions ?: AuthOptions ) : Promise < void > ;
0 commit comments