Files
ProjectE/apps/web/next-auth.d.ts
T

12 lines
172 B
TypeScript
Raw Normal View History

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