Files
payme/types/next-auth.d.ts
2026-03-27 19:35:14 +01:00

16 lines
239 B
TypeScript

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