mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
More specific constructor for string or HTMLElement
This commit is contained in:
parent
371e57f2c9
commit
e1b2093b33
3
dropzone/dropzone.d.ts
vendored
3
dropzone/dropzone.d.ts
vendored
@ -54,7 +54,8 @@ interface DropzoneOptions {
|
||||
}
|
||||
|
||||
declare class Dropzone {
|
||||
constructor(container: any, options?: DropzoneOptions);
|
||||
constructor(container: string, options?: DropzoneOptions);
|
||||
constructor(container: HTMLElement, options?: DropzoneOptions);
|
||||
static autoDiscover: boolean;
|
||||
static options: any;
|
||||
static confirm: (question: string, accepted: () => void, rejected?: () => void) => void;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user