mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02: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;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|