svelte-settings
Version:
> [!WARNING] > This project is a work in progress. Do not use it in any of your projects yet.
20 lines (19 loc) • 396 B
TypeScript
export interface Changelog {
releases: Release[];
}
export interface Release {
version: string;
date: string;
commitGroups: CommitGroup[];
}
export interface CommitGroup {
title: string | boolean;
type: string | null;
commits: Commit[];
}
export interface Commit {
hash: string;
subject: string | null;
scope?: string | undefined;
commitUrl: string;
}