UNPKG

ruins

Version:

> [!IMPORTANT] > This is in beta. Not everything is ironed out and some modules might misbehave

9 lines (8 loc) 235 B
/** * Parse conventional commit, returns undefined if not valid, its parts if valid */ export declare const parseConventionalCommit: (message: string) => { type: string; scope: string; description: string; } | undefined;