Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- // 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;
- }
- }
|