Files
mixyboos/types/next-auth.d.ts
2023-05-12 21:49:01 +01:00

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;
}
}