Files
opengifame/types.d.ts
Fergal Moran d131663c36 Sort terms
2022-10-15 17:14:34 +01:00

10 lines
156 B
TypeScript

import type { DefaultUser } from 'next-auth';
declare module 'next-auth' {
interface Session {
user?: DefaultUser & {
id: string;
};
}
}