Files
knur-app/types/next-auth.d.ts

17 lines
255 B
TypeScript
Raw Permalink Normal View History

2026-06-18 11:02:31 +02:00
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;
}
}