You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // types/next-auth.d.ts
- import NextAuth from "next-auth";
-
- declare module "next-auth" {
- interface Session {
- user?: {
- name?: string | null;
- email?: string | null;
- image?: string | null;
- abilities?: string[] | null; // <-- Add your custom fields here
- };
- expires: ISODateString;
- }
- }
|