UNPKG

keep-a-changelog

Version:

Parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.

9 lines (8 loc) 262 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; }