chatbot-template/next-auth.d.ts
2023-06-16 11:49:14 -04:00

7 lines
92 B
TypeScript

declare module 'next-auth' {
interface Session {
user: {
id: string
}
}
}