keycloak_theme/src/bin/shared/KeycloakVersionRange.ts

10 lines
332 B
TypeScript
Raw Normal View History

2024-05-20 15:48:51 +02:00
export type KeycloakVersionRange =
2024-07-07 18:45:14 +02:00
| KeycloakVersionRange.WithAccountV1Theme
| KeycloakVersionRange.WithoutAccountV1Theme;
2024-05-17 05:13:41 +02:00
export namespace KeycloakVersionRange {
2024-07-07 18:45:14 +02:00
export type WithoutAccountV1Theme = "21-and-below" | "22-and-above";
2024-05-17 05:13:41 +02:00
2024-07-07 18:45:14 +02:00
export type WithAccountV1Theme = "21-and-below" | "23" | "24" | "25-and-above";
2024-05-17 05:13:41 +02:00
}