FPSMS-frontend
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

15 righe
320 B

  1. // types/next-auth.d.ts
  2. import NextAuth from "next-auth";
  3. declare module "next-auth" {
  4. interface Session {
  5. user?: {
  6. name?: string | null;
  7. email?: string | null;
  8. image?: string | null;
  9. abilities?: string[] | null; // <-- Add your custom fields here
  10. };
  11. expires: ISODateString;
  12. }
  13. }