File tree 1 file changed +1
-15
lines changed
1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -134,21 +134,7 @@ export interface BaseAuth<T extends AbstractAuthRequestHandler> {
134
134
* @return {Promise<DecodedIdToken> } A Promise that will be fulfilled after a successful
135
135
* verification.
136
136
*/
137
- verifyIdToken ( idToken : string , checkRevoked : boolean ) : Promise < DecodedIdToken > ;
138
-
139
- /**
140
- * // TODO: DEFAULT IMPORT (documentation??????)
141
- * Verifies a JWT auth token. Returns a Promise with the tokens claims. Rejects
142
- * the promise if the token could not be verified. If checkRevoked is set to true,
143
- * verifies if the session corresponding to the ID token was revoked. If the corresponding
144
- * user's session was invalidated, an auth/id-token-revoked error is thrown. If not specified
145
- * the check is not applied.
146
- *
147
- * @param {string } idToken The JWT to verify.
148
- * @return {Promise<DecodedIdToken> } A Promise that will be fulfilled after a successful
149
- * verification.
150
- */
151
- verifyIdToken ( idToken : string ) : Promise < DecodedIdToken > ;
137
+ verifyIdToken ( idToken : string , checkRevoked ?: boolean ) : Promise < DecodedIdToken > ;
152
138
153
139
/**
154
140
* Looks up the user identified by the provided user id and returns a promise that is
You can’t perform that action at this time.
0 commit comments