this repo has no description
1import { DefaultSession } from "next-auth";
2
3declare module "next-auth" {
4 interface Session {
5 user: DefaultSession["user"] & {
6 id: string;
7 firstName: string | null;
8 secondName: string | null;
9 locale: "en" | "ru";
10 };
11 }
12
13 interface User {
14 id: string;
15 firstName: string | null;
16 secondName: string | null;
17 locale: "en" | "ru";
18 }
19}