Files
standardnotes-app-web/packages/ui-services/src/Changelog/Changelog.ts

14 lines
254 B
TypeScript

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