comicbox/next-auth.d.ts
Ashhhleyyy bf70d7b476
All checks were successful
continuous-integration/drone/push Build is passing
chore: run prettier
2022-07-26 22:18:54 +01:00

10 lines
235 B
TypeScript

import NextAuth, { DefaultSession } from 'next-auth';
declare module 'next-auth' {
interface Session {
user: {
/** The user's internal ID. */
id: string;
} & DefaultSession['user'];
}
}