Files
xingrin/frontend/types/version.types.ts
2026-01-10 10:27:48 +08:00

14 lines
262 B
TypeScript

export interface VersionInfo {
version: string
githubRepo: string
}
export interface UpdateCheckResult {
currentVersion: string
latestVersion: string
hasUpdate: boolean
releaseUrl: string
releaseNotes: string | null
publishedAt: string | null
}