This commit is contained in:
2026-01-22 22:24:06 +01:00
parent f67945d8e7
commit 0409fe2afd
3 changed files with 44 additions and 7 deletions

View File

@@ -4,10 +4,12 @@ declare module 'next-auth' {
interface Session {
user: {
id: string;
plan: string;
} & DefaultSession['user'];
}
interface User {
id: string;
plan: string;
}
}