Skip to content
Snippets Groups Projects
next-auth.d.ts 236 B
Newer Older
Yusuf Akgül's avatar
Yusuf Akgül committed
import 'next-auth';

declare module 'next-auth' {
    interface Session {
        user: {
            id: number;
            name?: string | null;
            email?: string | null;
            image?: string | null;
        };
    }
}