mirror of
https://github.com/Snouzy/workout-cool.git
synced 2026-05-19 14:40:35 +00:00
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
/* eslint-disable @typescript-eslint/consistent-type-definitions */
|
|
import type { DefaultSession } from "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface Session {
|
|
user: DefaultSession["user"] & {
|
|
id: string;
|
|
email: string;
|
|
name?: string;
|
|
image?: string;
|
|
};
|
|
}
|
|
}
|