From 1f44568ab7fc3d76a31e574dbb020b905238dfb5 Mon Sep 17 00:00:00 2001 From: Szymon Sukiennik Date: Fri, 14 Aug 2020 23:52:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#46384=20[react-cal?= =?UTF-8?q?endar]=20add=20missing=20allowPartialRange=20property=20by=20@s?= =?UTF-8?q?sukienn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/react-calendar/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-calendar/index.d.ts b/types/react-calendar/index.d.ts index 0aee1d4f61..e4d210c814 100644 --- a/types/react-calendar/index.d.ts +++ b/types/react-calendar/index.d.ts @@ -16,6 +16,7 @@ export default function Calendar(props: CalendarProps): JSX.Element; export interface CalendarProps { activeStartDate?: Date; + allowPartialRange?: boolean; calendarType?: CalendarType; className?: string | string[]; defaultActiveStartDate?: Date;