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
  • Loading branch information
kailash-b authored Feb 5, 2025
2 parents ac9df91 + addc382 commit 4cc23ef
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 4cc23ef

Please sign in to comment.