template-syncer
Version:
智能模板同步工具 - 让你的项目与模板仓库保持同步,支持智能合并、差异对比和交互式更新
11 lines (10 loc) • 352 B
TypeScript
import type { BatchResult } from '../types';
export declare const logger: {
info: (msg: string) => void;
success: (msg: string) => void;
warn: (msg: string) => void;
error: (msg: string) => void;
step: (msg: string) => void;
file(icon: string, filePath: string, status: string): void;
summary(result: BatchResult): void;
};