export type ChangelogVersion = { version: string | null title: string date: string | null body: string parsed: Record } export interface Changelog { title: string description: string versions: Array }