@@ -647,23 +647,23 @@ export class User extends Object {
647
647
smsCode : string
648
648
) : Promise < User > ;
649
649
static loginWithAuthData (
650
- authData : Object ,
650
+ authData : object ,
651
651
platform : string ,
652
652
options ?: OAuthLoginOptions
653
653
) : Promise < User > ;
654
654
static signUpOrlogInWithAuthData (
655
- authData : Object ,
655
+ authData : object ,
656
656
platform : string ,
657
657
options ?: OAuthLoginOptions
658
658
) : Promise < User > ;
659
659
static loginWithAuthDataAndUnionId (
660
- authData : Object ,
660
+ authData : object ,
661
661
platform : string ,
662
662
unionId : string ,
663
663
unionLoginOptions ?: UnionLoginOptions
664
664
) : Promise < User > ;
665
665
static signUpOrlogInWithAuthDataAndUnionId (
666
- authData : Object ,
666
+ authData : object ,
667
667
platform : string ,
668
668
unionId : string ,
669
669
unionLoginOptions ?: UnionLoginOptions
@@ -706,12 +706,12 @@ export class User extends Object {
706
706
707
707
loginWithWeapp ( options ?: OAuthLoginOptions ) : Promise < User > ;
708
708
loginWithAuthData (
709
- authData : Object ,
709
+ authData : object ,
710
710
platform : string ,
711
711
options ?: OAuthLoginOptions
712
712
) : Promise < User > ;
713
713
loginWithAuthDataAndUnionId (
714
- authData : Object ,
714
+ authData : object ,
715
715
platform : string ,
716
716
unionId : string ,
717
717
unionLoginOptions ?: UnionLoginOptions
@@ -724,9 +724,9 @@ export class User extends Object {
724
724
isAnonymous ( ) : boolean ;
725
725
isCurrent ( ) : boolean ;
726
726
727
- associateWithAuthData ( authData : Object , platform : string ) : Promise < User > ;
727
+ associateWithAuthData ( authData : object , platform : string ) : Promise < User > ;
728
728
associateWithAuthDataAndUnionId (
729
- authData : Object ,
729
+ authData : object ,
730
730
platform : string ,
731
731
unionId : string ,
732
732
unionLoginOptions ?: UnionOptions
@@ -750,7 +750,7 @@ export class User extends Object {
750
750
751
751
follow ( user : User | string , authOptions ?: AuthOptions ) : Promise < void > ;
752
752
follow (
753
- options : { user : User | string ; attributes ?: Object } ,
753
+ options : { user : User | string ; attributes ?: object } ,
754
754
authOptions ?: AuthOptions
755
755
) : Promise < void > ;
756
756
unfollow ( user : User | string , authOptions ?: AuthOptions ) : Promise < void > ;
0 commit comments