From 0dcd0bdc39294901854954a28faa98e35342dd26 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sat, 8 Oct 2016 16:01:34 -0400 Subject: [PATCH] Allows Element in quills ctor (#11841) --- quill/quill.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quill/quill.d.ts b/quill/quill.d.ts index 2e75e14c20..66fdc11245 100644 --- a/quill/quill.d.ts +++ b/quill/quill.d.ts @@ -38,7 +38,7 @@ declare namespace QuillJS { type formatsType = { [key: string]: any }; export interface QuillStatic { - new (selector: string, options?: QuillOptionsStatic): QuillStatic; + new (container: string | Element, options?: QuillOptionsStatic): QuillStatic; deleteText(start: number, end: number, source?: sourceType): void; disable(): void; enable(enabled?: boolean): void;