From 8654d7ac79399a2dfa6ef7dac4b60373baa8e36d Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Mon, 13 Jun 2022 12:16:54 -0500 Subject: [PATCH] Removed unused type definitions. --- types/CalenderContext.d.ts | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/types/CalenderContext.d.ts b/types/CalenderContext.d.ts index 7655514..a8f4632 100644 --- a/types/CalenderContext.d.ts +++ b/types/CalenderContext.d.ts @@ -29,11 +29,6 @@ interface Month { week6: MonthDay[]; } -interface MonthInfo { - date: Date; - title: string; -} - interface WeekLayout { weekdays: DaysOfWeek; month: Month; @@ -44,21 +39,8 @@ interface MonthLayout { monday: WeekLayout; } -interface MonthContext extends MonthInfo { - layout: MonthLayout; -} - interface UpdateCalendarProps { year: number; month: number; day: number; } - -interface CalenderContextState { - currDate: Date; - setCurrDate: React.Dispatch>; - selectedDate: Date; - title: string; - layout: MonthLayout; - updateDate: (input: UpdateCalendarProps) => void; -}