From 7bff99cf63c2516be2155bc321ff2ea04b28d650 Mon Sep 17 00:00:00 2001 From: Hussein Shabbir Date: Tue, 27 Jun 2017 21:00:24 +0400 Subject: [PATCH] Export the ReactDatePickerProps interface This is useful when wrapping the date picker in a custom component so that the props of the custom component can extend ReactDatePickerProps. --- types/react-datepicker/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-datepicker/index.d.ts b/types/react-datepicker/index.d.ts index f31f0316e1..aeb44be606 100644 --- a/types/react-datepicker/index.d.ts +++ b/types/react-datepicker/index.d.ts @@ -9,7 +9,7 @@ import * as React from "react"; import * as moment from "moment"; -interface ReactDatePickerProps { +export interface ReactDatePickerProps { autoComplete?: string; autoFocus?: boolean; calendarClassName?: string;