Files
xingrin/frontend/types/version.types.ts

14 lines
262 B
TypeScript
Raw Normal View History

2026-01-10 10:27:48 +08:00
export interface VersionInfo {
version: string
githubRepo: string
}
export interface UpdateCheckResult {
currentVersion: string
latestVersion: string
hasUpdate: boolean
releaseUrl: string
releaseNotes: string | null
publishedAt: string | null
}