keycloak_theme/src/bin/keycloakify/generateTheme/generateThemeVariants.ts

13 lines
316 B
TypeScript
Raw Normal View History

2024-05-12 20:47:03 +02:00
import type { ThemeType } from "../../constants";
export function generateThemeVariations(params: {
themeName: string;
themeVariantName: string;
implementedThemeTypes: Record<ThemeType | "email", boolean>;
buildOptions: {
keycloakifyBuildDirPath: string;
};
}) {
//TODO: Implement
}