Files
jaejadle/nextjs/types/next-auth.d.ts
Mayne0213 f78454c2a1
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled
CHORE(merge): merge from develop
- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
2026-01-06 17:29:16 +09:00

32 lines
558 B
TypeScript

// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { DefaultSession } from "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: string;
userId: string;
name: string;
email?: string | null;
emailVerified?: Date | null;
};
}
interface User {
id: string;
userId: string;
name: string;
email?: string | null;
emailVerified?: Date | null;
}
}
declare module "next-auth/jwt" {
interface JWT {
id: string;
userId: string;
name: string;
}
}