Initial commit

This commit is contained in:
monoadmin
2026-04-10 15:36:33 -07:00
commit d6d7338a39
134 changed files with 16232 additions and 0 deletions

23
types/next-auth.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
import 'next-auth'
import 'next-auth/jwt'
declare module 'next-auth' {
interface Session {
user: {
id: string
email: string
name: string
role: string
}
}
interface User {
role: string
}
}
declare module 'next-auth/jwt' {
interface JWT {
id: string
role: string
}
}