Skip to content

Commit

Permalink
fix(component): add mfa property to ClientAuthCode interface (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkurBansalSF committed Jun 3, 2022
1 parent 1c84ee6 commit 1f13901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface AuthenticateFn<T> {

export interface ClientAuthCode<T extends IAuthUser, ID = number> {
clientId: string;
mfa?: boolean;
userId?: ID;
user?: T;
mfa?: boolean;
}

0 comments on commit 1f13901

Please sign in to comment.