Represents the status of the application version (stable, beta, or development).
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 (stable, beta, or development).