From 7865985f041cfc5ade5b43f1561939d2be48eeeb Mon Sep 17 00:00:00 2001 From: Dennis Coh <35122275+denniscoh@users.noreply.github.com> Date: Fri, 5 Jan 2018 09:18:01 -0800 Subject: [PATCH] [@types/react-dates] Add missing firstDayOfWeek optional prop to DayPickerRangeController component (#22689) --- types/react-dates/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-dates/index.d.ts b/types/react-dates/index.d.ts index 706130fc82..ef501229ff 100644 --- a/types/react-dates/index.d.ts +++ b/types/react-dates/index.d.ts @@ -237,6 +237,7 @@ declare namespace ReactDates { onOutsideClick?: (e: any) => void, keepOpenOnDateSelect?: boolean, noBorder?: boolean, + firstDayOfWeek? : 0 | 1 | 2 | 3 | 4 | 5 | 6, // navigation related props navPrev?: string | JSX.Element,