bumper-cli
Version:
🚀 A magical release management system with beautiful changelogs and automated workflows
13 lines • 532 B
TypeScript
export declare const formatCommitMessage: (message: string, type?: string, scope?: string, breaking?: boolean) => string;
export declare const suggestCommitFormat: (message: string) => {
original: string;
suggested: string;
type: string;
scope?: string;
breaking: boolean;
improvements: string[];
};
export declare const createInteractiveCommit: () => Promise<string>;
export declare const displayCommitSuggestions: (message: string) => void;
//# sourceMappingURL=commitFormatter.d.ts.map