7 lines
92 B
TypeScript
7 lines
92 B
TypeScript
declare module 'next-auth' {
|
|
interface Session {
|
|
user: {
|
|
id: string
|
|
}
|
|
}
|
|
}
|