conventional-changelog-writer
Version:
Write logs based on conventional commits and templates.
8 lines • 305 B
TypeScript
import type { CommitKnownProps } from '@conventional-changelog/template';
export type * from './options.js';
export type * from './utils.js';
export interface Details<Commit extends CommitKnownProps = CommitKnownProps> {
log: string;
keyCommit: Commit | null;
}
//# sourceMappingURL=index.d.ts.map