Skip to content

Commit e9447b0

Browse files
committed
Make it unknown outright
1 parent 46491a1 commit e9447b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-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]: string | object | undefined | unknown;
541+
[key: string]: unknown;
542542
'auth_time'?: string;
543543
'exp'?: string;
544544
'firebase'?: {

packages/auth/src/model/public_types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export interface ParsedToken {
104104
'identities'?: Record<string, string>;
105105
};
106106
/** Map of any additional custom claims. */
107-
[key: string]: string | object | undefined | unknown;
107+
[key: string]: unknown;
108108
}
109109

110110
/**

0 commit comments

Comments
 (0)