UNPKG

i18n-sheet-convert

Version:

一个用于在i18n JSON文件和Excel文件之间进行转换的工具

14 lines (13 loc) 386 B
import { I18nConverterOptions } from './types.js'; declare class I18nConverter { private localesPath; private outputPath; private languages; constructor(options: I18nConverterOptions); private detectLanguages; private flattenObject; private unflattenObject; jsonToExcel(): Promise<void>; excelToJson(): Promise<void>; } export default I18nConverter;