Files
democratic-money/src/types/next-auth.d.ts
root a3f08242fe first commit
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-10 19:20:03 +00:00

15 lines
286 B
TypeScript

import type { DefaultSession } from "next-auth";
declare module "next-auth" {
interface Session {
user: DefaultSession["user"] & { id: string; role: "USER" | "ADMIN" };
}
}
declare module "next-auth/jwt" {
interface JWT {
id?: string;
role?: "USER" | "ADMIN";
}
}