This commit is contained in:
2024-08-22 18:20:29 +02:00
parent ee14d523cf
commit fb8d9b450e
36 changed files with 261 additions and 180 deletions

14
types/auth.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
// auth.d.ts
declare module '#auth-utils' {
interface User {
email: string
name: string
}
interface UserSession {
email: string
name: string
}
}
export {}