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