FPSMS-frontend
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

15 rader
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. }