10 lines
149 B
TypeScript
10 lines
149 B
TypeScript
import 'next-auth'
|
|
|
|
declare module 'next-auth' {
|
|
interface Session {
|
|
accessToken?: string
|
|
}
|
|
interface JWT {
|
|
accessToken?: string
|
|
}
|
|
}
|