import Changelog from "./Changelog"; import Release from "./Release"; export interface Options { /** * Custom function to create Release instances. * Needed if you want to use a custom Release class. */ releaseCreator: (version?: string, date?: string, description?: string) => Release; } /** Parse a markdown string */ export default function parser(markdown: string, options?: Options): Changelog;