wangeditor
Version:
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
11 lines (10 loc) • 401 B
TypeScript
/**
* @description 国际化 初始化
* @author tonghan
* i18next 是使用 JavaScript 编写的国际化框架
* i18next 提供了标准的i18n功能,例如(复数,上下文,插值,格式)等
* i18next 文档地址: https://www.i18next.com/overview/getting-started
*/
import Editor from '../index';
declare function i18nextInit(editor: Editor): void;
export default i18nextInit;