This commit is contained in:
Dominik Klarkowski
2026-06-18 11:02:31 +02:00
parent d00a5a42ac
commit 047e580da0
32 changed files with 735 additions and 189 deletions

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

@@ -0,0 +1,16 @@
import "next-auth";
import "next-auth/jwt";
declare module "next-auth" {
interface Session {
idToken?: string;
}
}
declare module "next-auth/jwt" {
interface JWT {
keycloakId?: string;
idToken?: string;
accessToken?: string;
}
}