2024-05-20 15:48:51 +02:00
|
|
|
export type KeycloakVersionRange =
|
|
|
|
| KeycloakVersionRange.WithAccountTheme
|
|
|
|
| KeycloakVersionRange.WithoutAccountTheme;
|
2024-05-17 05:13:41 +02:00
|
|
|
|
|
|
|
export namespace KeycloakVersionRange {
|
|
|
|
export type WithoutAccountTheme = "21-and-below" | "22-and-above";
|
|
|
|
|
2024-06-10 15:29:08 +02:00
|
|
|
export type WithAccountTheme = "21-and-below" | "23" | "24" | "25-and-above";
|
2024-05-17 05:13:41 +02:00
|
|
|
}
|