This commit is contained in:
2024-08-22 16:21:39 +02:00
parent 692e9b6f61
commit ee14d523cf
3 changed files with 191 additions and 118 deletions

12
auth.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
// auth.d.ts
declare module '#auth-utils' {
interface User {
// Add your own fields
}
interface UserSession {
// Add your own fields
}
}
export {}