@@ -143,7 +143,7 @@ firebase.UserInfo.prototype.phoneNumber;
143
143
* @interface
144
144
* @extends {firebase.UserInfo }
145
145
*/
146
- firebase . User ;
146
+ firebase . User = function ( ) { } ;
147
147
148
148
/**
149
149
* The phone number normalized based on the E.164 standard (e.g. +16505550101)
@@ -712,6 +712,19 @@ firebase.User.prototype.delete = function() {};
712
712
*/
713
713
firebase . User . prototype . toJSON = function ( ) { } ;
714
714
715
+ /**
716
+ * The Firebase Auth service interface.
717
+ *
718
+ * Do not call this constructor directly. Instead, use
719
+ * {@link firebase.auth `firebase.auth()`}.
720
+ *
721
+ * See
722
+ * {@link https://firebase.google.com/docs/auth/ Firebase Authentication}
723
+ * for a full guide on how to use the Firebase Auth service.
724
+ *
725
+ * @interface
726
+ */
727
+ firebase . auth . Auth = function ( ) { } ;
715
728
716
729
/**
717
730
* Checks a password reset code sent to the user by email or other out-of-band
@@ -854,20 +867,6 @@ firebase.auth.Auth.prototype.checkActionCode = function(code) {};
854
867
*/
855
868
firebase . auth . Auth . prototype . applyActionCode = function ( code ) { } ;
856
869
857
- /**
858
- * The Firebase Auth service interface.
859
- *
860
- * Do not call this constructor directly. Instead, use
861
- * {@link firebase.auth `firebase.auth()`}.
862
- *
863
- * See
864
- * {@link https://firebase.google.com/docs/auth/ Firebase Authentication}
865
- * for a full guide on how to use the Firebase Auth service.
866
- *
867
- * @interface
868
- */
869
- firebase . auth . Auth = function ( ) { } ;
870
-
871
870
/**
872
871
* The {@link firebase.app.App app} associated with the `Auth` service
873
872
* instance.
@@ -1440,7 +1439,7 @@ firebase.auth.Auth.prototype.signInWithPhoneNumber =
1440
1439
* A result from a phone number sign-in, link, or reauthenticate call.
1441
1440
* @interface
1442
1441
*/
1443
- firebase . auth . ConfirmationResult ;
1442
+ firebase . auth . ConfirmationResult = function ( ) { } ;
1444
1443
1445
1444
1446
1445
/**
0 commit comments