Skip to content

Commit

Permalink
Change type of authParams to object in PasswordlessWithSMSOptions and…
Browse files Browse the repository at this point in the history
… PasswordlessWithEmailOptions
  • Loading branch information
kailash-b committed Feb 5, 2025
1 parent ac9df91 commit addc382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export interface PasswordlessWithEmailOptions {
/**
* Optional parameters, used when strategy is 'linḱ'
*/
authParams?: string;
authParams?: object;
[key: string]: any;
}

Expand All @@ -368,7 +368,7 @@ export interface PasswordlessWithSMSOptions {
/**
* Optional passwordless parameters
*/
authParams?: string;
authParams?: object;
[key: string]: any;
}

Expand Down

0 comments on commit addc382

Please sign in to comment.