From 371e57f2c9b4895be2fd78267d4200c4318e9fd2 Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 30 Jun 2014 20:26:58 -0700 Subject: [PATCH] Dropzone constructor takes any The docs say that the constructor can take a string selector, HtmlElement, or JQuery type as seen here: http://www.dropzonejs.com/#toc_15 --- dropzone/dropzone.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropzone/dropzone.d.ts b/dropzone/dropzone.d.ts index ac630c9d4..c19bcca88 100644 --- a/dropzone/dropzone.d.ts +++ b/dropzone/dropzone.d.ts @@ -54,7 +54,7 @@ interface DropzoneOptions { } declare class Dropzone { - constructor(container: string, options?: DropzoneOptions); + constructor(container: any, options?: DropzoneOptions); static autoDiscover: boolean; static options: any; static confirm: (question: string, accepted: () => void, rejected?: () => void) => void;