From c6a0fdd0b0083336eab45b1b982a8f33bf915040 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:50:00 -0400 Subject: [PATCH] Add InactivityNoticeProps type --- index.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/index.d.ts b/index.d.ts index 9b01745..2657301 100644 --- a/index.d.ts +++ b/index.d.ts @@ -45,6 +45,18 @@ declare global { whatHappened: string; } + interface InactivityNoticeProps { + created_at: number; + departments: string[]; + end: string; + reason: string; + start: string; + user: { + id: string; + username: string; + }; + } + interface ReportCardProps { attachment: string; attachment_loading?: boolean;