Added 3 parameters to config interface.

This commit is contained in:
David Kirkland
2016-02-05 16:50:46 +09:00
parent 4ec3c5bf29
commit ce35edc06b
+4 -1
View File
@@ -566,12 +566,14 @@ declare module CKEDITOR {
contentsCss?: string | string[];
contentsLangDirection?: string;
customConfig?: string;
enterMode?: number;
extraPlugins?: string;
font_names?: string;
font_defaultLabel?: string;
fontSize_sizes?: string;
fontSize_defaultLabel?: string;
height?: string | number;
htmlEncodeOutput?: boolean;
language?: string;
on?: any;
plugins?: string;
@@ -583,6 +585,7 @@ declare module CKEDITOR {
toolbarGroups?: toolbarGroups[];
toolbarLocation?: string;
readOnly?: boolean;
shiftEnterMode?: number;
skin?: string;
width?: string | number;
}
@@ -1147,4 +1150,4 @@ declare module CKEDITOR {
function load(languageCode: string, defaultLanguage: string, callback: Function): void;
function detect(defaultLanguage: string, probeLanguage: string): string;
}
}
}