mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
14 lines
262 B
TypeScript
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
|
|
}
|