From edf5bfa360d33f6ab4dfa8e259e21c22bed6f2dc Mon Sep 17 00:00:00 2001 From: John Date: Tue, 31 Jan 2017 12:38:05 -0600 Subject: [PATCH] Added missing prop --- react-dropzone/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/react-dropzone/index.d.ts b/react-dropzone/index.d.ts index b4ed4ded43..1e5a62af1b 100644 --- a/react-dropzone/index.d.ts +++ b/react-dropzone/index.d.ts @@ -33,6 +33,8 @@ declare module "react-dropzone" { name?: string, // name attribute for the input tag maxSize?: number, minSize?: number + + onFileDialogCancel?: () => void; } let Dropzone: React.ClassicComponentClass;