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