UNPKG

@eighty4/changelog

Version:
8 lines (7 loc) 265 B
import type { ChangelogError } from './errors.ts'; export type InspectResult = { errors: Array<ChangelogError>; listMarker: ListMarker; }; export type ListMarker = '*' | '-' | '+'; export declare function inspectChangelog(changelog: string): InspectResult;