diff --git a/composables/useAuth.ts b/composables/useAuth.ts index 2d16ab8..9e649aa 100644 --- a/composables/useAuth.ts +++ b/composables/useAuth.ts @@ -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 {