ckeditor: added CKEDITOR.lang type definition

Added the missing CKEDITOR.lang type definition (stores language-related
functions - see
https://github.com/ckeditor/ckeditor-dev/blob/master/core/lang.js)
This commit is contained in:
mirogrenda
2015-11-24 15:40:54 +01:00
parent ba424f7ee3
commit f9cd3e383d

View File

@@ -1139,4 +1139,12 @@ declare module CKEDITOR {
function isTabEnabled(editor: editor, dialogName: string, tabName: string): boolean;
function okButton(): void;
}
}
module lang {
var languages: any;
var rtl: any;
function load(languageCode: string, defaultLanguage: string, callback: Function): void;
function detect(defaultLanguage: string, probeLanguage: string): string;
}
}