forked from github/plane
14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
|
import NextAuth from "next-auth/next";
|
||
|
|
||
|
declare module "next-auth" {
|
||
|
interface Session {
|
||
|
user: {
|
||
|
name: string;
|
||
|
email: string;
|
||
|
image: string;
|
||
|
accessToken: string;
|
||
|
refreshToken: string;
|
||
|
};
|
||
|
}
|
||
|
}
|