UNPKG

changelog-splitter

Version:

✂️ conventional commit changelog markdown splitter 约定式提交更新日志 markdown 切割器

17 lines (16 loc) 443 B
export declare class Printer { private readonly cwd; counts: { insertFiles: Set<string>; updateFiles: Set<string>; removeFiles: Set<string>; }; static insertSymbol: string; static updateSymbol: string; static removeSymbol: string; constructor(cwd: string); private toRelative; insertFile(file: string): void; updateFile(file: string): void; removeFile(file: string): void; }