chatbot-template/next-auth.d.ts

8 lines
92 B
TypeScript
Raw Normal View History

2023-06-16 11:49:14 -04:00
declare module 'next-auth' {
interface Session {
user: {
id: string
}
}
}