mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2025-12-22 09:41:39 +00:00
16 lines
219 B
TypeScript
16 lines
219 B
TypeScript
import NextAuth from "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface Session {
|
|
id: string;
|
|
user: {
|
|
id: string;
|
|
};
|
|
}
|
|
|
|
interface User {
|
|
// ...other properties
|
|
// role: UserRole;
|
|
}
|
|
}
|