release-please
Version:
generate release PRs based on the conventionalcommits.org spec
16 lines (15 loc) • 562 B
TypeScript
import { ChangelogNotes, BuildNotesOptions } from '../changelog-notes';
import { ConventionalCommit } from '../commit';
interface DefaultChangelogNotesOptions {
commitPartial?: string;
headerPartial?: string;
mainTemplate?: string;
}
export declare class DefaultChangelogNotes implements ChangelogNotes {
private commitPartial?;
private headerPartial?;
private mainTemplate?;
constructor(options?: DefaultChangelogNotesOptions);
buildNotes(commits: ConventionalCommit[], options: BuildNotesOptions): Promise<string>;
}
export {};