mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-06 16:20:26 +08:00
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:
Vendored
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user