ytptube/ui/@types/changelogs.d.ts
2025-06-22 21:49:07 +03:00

18 lines
285 B
TypeScript

type changelogs = changeset[]
type changeset = {
tag: string
full_sha: string
date: string
commits: Commit[]
}
type Commit = {
sha: string
full_sha: string
message: string
author: string
date: string
}
export type {changelogs, changeset, Commit}