this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 19 lines 382 B view raw
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}