mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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;
|
||
|
};
|
||
|
}
|
||
|
}
|