Skip to content

Commit ae023fc

Browse files
committed
Changing type from any to unknown for type safety.
1 parent 6c8df0c commit ae023fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/auth/user-record.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ export interface MultiFactorInfoResponse {
4949
phoneInfo?: string;
5050
totpInfo?: TotpInfoResponse;
5151
enrolledAt?: string;
52-
[key: string]: any;
52+
[key: string]: unknown;
5353
}
5454

5555
export interface TotpInfoResponse {
56-
[key: string]: any;
56+
[key: string]: unknown;
5757
}
5858

5959
export interface ProviderUserInfoResponse {

0 commit comments

Comments
 (0)