keycloak_theme/src/bin/shared/KeycloakVersionRange.ts
2024-10-19 22:27:28 +02:00

10 lines
334 B
TypeScript

export type KeycloakVersionRange =
| KeycloakVersionRange.WithAccountV1Theme
| KeycloakVersionRange.WithoutAccountV1Theme;
export namespace KeycloakVersionRange {
export type WithoutAccountV1Theme = "22-to-25" | "all-other-versions";
export type WithAccountV1Theme = "21-and-below" | "23" | "24" | "25-and-above";
}