Implement next-auth v5

This commit is contained in:
Jared Palmer 2023-06-16 11:49:14 -04:00
parent a9e4956909
commit 187b55aad7
15 changed files with 420 additions and 547 deletions

7
next-auth.d.ts vendored Normal file
View file

@ -0,0 +1,7 @@
declare module 'next-auth' {
interface Session {
user: {
id: string
}
}
}