mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2025-12-30 05:27:40 +00:00
20 lines
353 B
TypeScript
20 lines
353 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
import NextAuth from "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface Session {
|
|
id: string;
|
|
user: User;
|
|
}
|
|
|
|
interface User {
|
|
id: string;
|
|
username: string;
|
|
name: string;
|
|
bio: string;
|
|
email: string;
|
|
profileImage: string;
|
|
headerImage: string;
|
|
}
|
|
}
|