You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the Loops provider generates TypeScript errors:
Type 'LoopsConfig' is not assignable to type 'Provider'.
Type 'LoopsConfig' is not assignable to type 'EmailConfig & InternalProviderOptions'.
Type 'LoopsConfig' is not assignable to type 'EmailConfig'.
Types of property 'sendVerificationRequest' are incompatible.
Type '(params: Params) => Promise<void>' is not assignable to type '(params: EmailProviderSendVerificationRequestParams) => Awaitable<void>'.
Types of parameters 'params' and 'params' are incompatible.
Type 'EmailProviderSendVerificationRequestParams' is not assignable to type 'Params'.
Type 'EmailProviderSendVerificationRequestParams' is not assignable to type '{ provider: LoopsConfig; }'.
Types of property 'provider' are incompatible.
Property 'transactionalId' is missing in type 'EmailConfig' but required in type 'LoopsConfig'.
How to reproduce
Just try to use the Loops provider, TypeScript will say the types are wrong.
Expected behavior
Using the Loops provider shouldn't trigger any TS errors.
The text was updated successfully, but these errors were encountered:
Provider type
Loops
Environment
Reproduction URL
https://github.com/gfpacheco/next-auth-loops-bug
Describe the issue
Using the Loops provider generates TypeScript errors:
How to reproduce
Just try to use the Loops provider, TypeScript will say the types are wrong.
Expected behavior
Using the Loops provider shouldn't trigger any TS errors.
The text was updated successfully, but these errors were encountered: