fix(Types): Added Default User Type

main
Flycro 2023-11-10 14:07:24 +01:00
parent b548676fd3
commit 29b395d695
1 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,12 @@
export interface User {
id: number
name: string
email?: string
email: string
email_verified_at: string | null
password?: string
remember_token?: string | null
created_at: string | null
updated_at: string | null
}
export interface LoginCredentials {