| 74 | } |
| 75 | |
| 76 | export interface VersionStatus { |
| 77 | current: string; |
| 78 | latest: string | null; |
| 79 | has_update: boolean; |
| 80 | } |
| 81 | |
| 82 | export async function getVersionStatus(): Promise<VersionStatus> { |
| 83 | const current = getCurrentVersion(); |
nothing calls this directly
no outgoing calls
no test coverage detected