We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f29d39 commit 8b6d2e3Copy full SHA for 8b6d2e3
packages/adapter-sequelize/src/index.ts
@@ -1,4 +1,4 @@
1
-import type { Account as ApadterAccount } from "next-auth"
+import type { Account as AdapterAccount } from "next-auth"
2
import type {
3
Adapter,
4
AdapterUser,
@@ -12,8 +12,8 @@ export { defaultModels as models }
12
13
// @see https://sequelize.org/master/manual/typescript.html
14
interface AccountInstance
15
- extends Model<ApadterAccount, Partial<ApadterAccount>>,
16
- ApadterAccount {}
+ extends Model<AdapterAccount, Partial<AdapterAccount>>,
+ AdapterAccount {}
17
interface UserInstance
18
extends Model<AdapterUser, Partial<AdapterUser>>,
19
AdapterUser {}
0 commit comments