mirror of
https://github.com/fergalmoran/opengifame.git
synced 2025-12-22 09:38:44 +00:00
10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
import type { DefaultUser } from 'next-auth';
|
|
|
|
declare module 'next-auth' {
|
|
interface Session {
|
|
user?: DefaultUser & {
|
|
id: string;
|
|
};
|
|
}
|
|
}
|