Skip to content

Commit 7010f55

Browse files
committed
Switch over to any instead
1 parent 9764404 commit 7010f55

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

common/api-review/auth.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ export function parseActionCodeURL(link: string): ActionCodeURL | null;
538538

539539
// @public
540540
export interface ParsedToken {
541-
[key: string]: unknown;
541+
[key: string]: any;
542542
'auth_time'?: string;
543543
'exp'?: string;
544544
'firebase'?: {

packages/auth/src/model/public_types.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* limitations under the License.
1616
*/
1717

18+
/* eslint-disable @typescript-eslint/no-explicit-any */
19+
1820
import { FirebaseApp } from '@firebase/app';
1921
import {
2022
CompleteFn,
@@ -104,7 +106,7 @@ export interface ParsedToken {
104106
'identities'?: Record<string, string>;
105107
};
106108
/** Map of any additional custom claims. */
107-
[key: string]: unknown;
109+
[key: string]: any;
108110
}
109111

110112
/**

0 commit comments

Comments
 (0)