techor-conventional-commits
Version:
A human-readable set of conventional commits, with version rules and changelog groupings
28 lines (27 loc) • 531 B
TypeScript
declare const commits: ({
type: string;
scope: string;
release: string;
group?: undefined;
hidden?: undefined;
} | {
type: string;
release: string;
group: string;
scope?: undefined;
hidden?: undefined;
} | {
type: string;
release: boolean;
group: string;
scope?: undefined;
hidden?: undefined;
} | {
type: string;
release: boolean;
hidden: boolean;
scope?: undefined;
group?: undefined;
})[];
declare const types: string[];
export { commits, types };