From 86423a814a7b44de5309fc6b17e65f7646fbb2d0 Mon Sep 17 00:00:00 2001 From: Anand Suthar Date: Fri, 31 May 2024 18:36:07 +0530 Subject: [PATCH] Added userlog type --- types.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/types.d.ts b/types.d.ts index 606eb32d..89d741d2 100644 --- a/types.d.ts +++ b/types.d.ts @@ -127,3 +127,15 @@ export interface PatientDetails { date: string; timing: string; } + +export interface UserLog { + username: usestring; + name: string; + email: string; + action: string; + userType: string; + timing: string; + device: string; + ip: string; + location: string; +}