We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9764404 commit 7010f55Copy full SHA for 7010f55
common/api-review/auth.api.md
@@ -538,7 +538,7 @@ export function parseActionCodeURL(link: string): ActionCodeURL | null;
538
539
// @public
540
export interface ParsedToken {
541
- [key: string]: unknown;
+ [key: string]: any;
542
'auth_time'?: string;
543
'exp'?: string;
544
'firebase'?: {
packages/auth/src/model/public_types.ts
@@ -15,6 +15,8 @@
15
* limitations under the License.
16
*/
17
18
+/* eslint-disable @typescript-eslint/no-explicit-any */
19
+
20
import { FirebaseApp } from '@firebase/app';
21
import {
22
CompleteFn,
@@ -104,7 +106,7 @@ export interface ParsedToken {
104
106
'identities'?: Record<string, string>;
105
107
};
108
/** Map of any additional custom claims. */
109
110
}
111
112
/**
0 commit comments