@@ -104,14 +104,14 @@ export class BaseAuth<T extends AbstractAuthRequestHandler> implements BaseAuthI
104
104
}
105
105
106
106
/**
107
- * Verifies a JWT auth token. Returns a promise with the tokens claims.
107
+ * Verifies a JWT auth token. Returns a promise with the token‘s claims.
108
108
* Rejects the promise if the token cannot be verified.
109
109
* If `checkRevoked` is set to true, first verifies whether the corresponding
110
110
* user is disabled.
111
- * If yes, an auth/user-disabled error is thrown.
111
+ * If yes, an ` auth/user-disabled` error is thrown.
112
112
* If no, verifies if the session corresponding to the ID token was revoked.
113
113
* If the corresponding user's session was invalidated, an
114
- * auth/id-token-revoked error is thrown.
114
+ * ` auth/id-token-revoked` error is thrown.
115
115
* If not specified the check is not applied.
116
116
*
117
117
* @param {string } idToken The JWT to verify.
@@ -510,15 +510,15 @@ export class BaseAuth<T extends AbstractAuthRequestHandler> implements BaseAuthI
510
510
}
511
511
512
512
/**
513
- * Verifies a Firebase session cookie. Returns a promise with the tokens claims.
513
+ * Verifies a Firebase session cookie. Returns a promise with the token’s claims.
514
514
* Rejects the promise if the cookie could not be verified.
515
515
* If `checkRevoked` is set to true, first verifies whether the corresponding
516
516
* user is disabled:
517
- * If yes, an auth/user-disabled error is thrown.
517
+ * If yes, an ` auth/user-disabled` error is thrown.
518
518
* If no, verifies if the session corresponding to the session cookie was
519
519
* revoked.
520
520
* If the corresponding user's session was invalidated, an
521
- * auth/session-cookie-revoked error is thrown.
521
+ * ` auth/session-cookie-revoked` error is thrown.
522
522
* If not specified the check is not performed.
523
523
*
524
524
* @param {string } sessionCookie The session cookie to verify.
@@ -797,7 +797,7 @@ export class TenantAwareAuth
797
797
* Verifies a JWT auth token. Returns a promise with the tokens claims. Rejects
798
798
* the promise if the token could not be verified. If checkRevoked is set to true,
799
799
* verifies if the session corresponding to the ID token was revoked. If the corresponding
800
- * user's session was invalidated, an auth/id-token-revoked error is thrown. If not specified
800
+ * user's session was invalidated, an ` auth/id-token-revoked` error is thrown. If not specified
801
801
* the check is not applied.
802
802
*
803
803
* @param {string } idToken The JWT to verify.
@@ -848,7 +848,7 @@ export class TenantAwareAuth
848
848
* Verifies a Firebase session cookie. Returns a promise with the tokens claims. Rejects
849
849
* the promise if the token could not be verified. If checkRevoked is set to true,
850
850
* verifies if the session corresponding to the session cookie was revoked. If the corresponding
851
- * user's session was invalidated, an auth/session-cookie-revoked error is thrown. If not
851
+ * user's session was invalidated, an ` auth/session-cookie-revoked` error is thrown. If not
852
852
* specified the check is not performed.
853
853
*
854
854
* @param {string } sessionCookie The session cookie to verify.
0 commit comments