Represents the status of the application version.
export type AppVersionStatus = | { status: "stable"; latestVersion: string; releaseUrl: string } | { status: "beta"; latestVersion: string; releaseUrl: string } | { status: "development"; latestVersion: string; releaseUrl: string }; Copy
export type AppVersionStatus = | { status: "stable"; latestVersion: string; releaseUrl: string } | { status: "beta"; latestVersion: string; releaseUrl: string } | { status: "development"; latestVersion: string; releaseUrl: string };
Represents the status of the application version.