From e0d184fc836d56ad435c926885dc67a4fb3729d8 Mon Sep 17 00:00:00 2001 From: Damiano Date: Fri, 31 Oct 2014 18:04:28 +0100 Subject: [PATCH] Update ckeditor Added toolbarGroups and removePlugins on configuration object. http://docs.ckeditor.com/#!/guide/dev_toolbar --- ckeditor/ckeditor.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ckeditor/ckeditor.d.ts b/ckeditor/ckeditor.d.ts index 491ae01572..315f9bdf10 100644 --- a/ckeditor/ckeditor.d.ts +++ b/ckeditor/ckeditor.d.ts @@ -550,11 +550,17 @@ declare module CKEDITOR { } + interface toolbarGroups { + name?: string; + groups?: string[]; + } interface config { startupMode?: string; removeButtons?: string; + removePlugins?: string; toolbar?: any; + toolbarGroups?: toolbarGroups[]; skin?: string; language?: string; plugins?: string;