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
This commit is contained in:
Steven
2014-06-30 20:26:58 -07:00
parent 3c26df13c4
commit 371e57f2c9
+1 -1
View File
@@ -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;