UNPKG

keep-a-changelog

Version:

Node package to parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.

9 lines 298 B
export default class Change { title: string; description: string; issues: string[]; static extractIssues(text: string, issues: string[]): string; constructor(title: string, description?: string); toString(bulletStyle?: string): string; } //# sourceMappingURL=Change.d.ts.map