From 29b395d695d6a017d519e9b39762e2216637d7a3 Mon Sep 17 00:00:00 2001 From: Flycro Date: Fri, 10 Nov 2023 14:07:24 +0100 Subject: [PATCH] fix(Types): Added Default User Type --- composables/useAuth.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 {