FPSMS-frontend
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

15 рядки
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. }