UNPKG

401 BTypeScriptView Raw
1/**
2 * @description 国际化 初始化
3 * @author tonghan
4 * i18next 是使用 JavaScript 编写的国际化框架
5 * i18next 提供了标准的i18n功能,例如(复数,上下文,插值,格式)等
6 * i18next 文档地址: https://www.i18next.com/overview/getting-started
7 */
8import Editor from '../index';
9declare function i18nextInit(editor: Editor): void;
10export default i18nextInit;