feat: add user schema timestamps

This commit is contained in:
Mythie
2023-10-28 20:57:26 +11:00
parent 9b5af329a8
commit ec1f61faa0
5 changed files with 58 additions and 23 deletions

View File

@ -19,5 +19,6 @@ declare module 'next-auth/jwt' {
id: string | number;
name?: string | null;
email: string | null;
lastSignedIn?: string | null;
}
}