@ui18n/cli
Version:
🌍 UI18n CLI工具 - 强大的国际化命令行工具
28 lines • 870 B
TypeScript
/**
* @ui18n/cli - UI18n命令行工具
*
* 提供完整的国际化工作流支持:
* - 项目初始化
* - 文本提取
* - 批量翻译
* - 配置管理
* - 统计报告
*/
export { CLI } from './cli-core.js';
export { InitCommand } from './commands/init.js';
export { ExtractCommand } from './commands/extract.js';
export { TranslateCommand } from './commands/translate.js';
export { ConfigCommand } from './commands/config.js';
export { StatsCommand } from './commands/stats.js';
export * from './utils/file-utils.js';
export * from './utils/logger.js';
export { ConfigManager } from './utils/config-manager.js';
export * from './types.js';
export declare const VERSION = "0.1.0";
export declare const CLI_NAME = "ui18n";
declare const _default: {
VERSION: string;
CLI_NAME: string;
};
export default _default;
//# sourceMappingURL=index.d.ts.map