From fe92aa252c8e90161de9d1a4430814fdaf4cae02 Mon Sep 17 00:00:00 2001 From: rushi216 Date: Tue, 22 Sep 2015 17:05:34 +0530 Subject: [PATCH 1/2] added extraPlugins property on configuration object --- ckeditor/ckeditor.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ckeditor/ckeditor.d.ts b/ckeditor/ckeditor.d.ts index 3bb90c760..37e609484 100644 --- a/ckeditor/ckeditor.d.ts +++ b/ckeditor/ckeditor.d.ts @@ -572,6 +572,7 @@ declare module CKEDITOR { colorButton_colors?: string; startupFocus?: boolean; on?: any; + extraPlugins?: string; } From 67e5a7613cf81cc50aa844473c9b84f3bf3502cd Mon Sep 17 00:00:00 2001 From: rushi216 Date: Wed, 23 Sep 2015 10:23:51 +0530 Subject: [PATCH 2/2] added height, toolbarlocation, readonly properties in config object --- ckeditor/ckeditor.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ckeditor/ckeditor.d.ts b/ckeditor/ckeditor.d.ts index 37e609484..a8f268074 100644 --- a/ckeditor/ckeditor.d.ts +++ b/ckeditor/ckeditor.d.ts @@ -573,6 +573,9 @@ declare module CKEDITOR { startupFocus?: boolean; on?: any; extraPlugins?: string; + height?: string | number; + toolbarLocation?: string; + readOnly?: boolean; }