i18next-init.d.ts 401 B

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