keycloak_theme/src/bin/keycloakify/generateThemeVariants.ts

13 lines
313 B
TypeScript
Raw Normal View History

import type { ThemeType } from "../constants";
export function generateThemeVariations(params: {
themeName: string;
themeVariantName: string;
implementedThemeTypes: Record<ThemeType | "email", boolean>;
buildOptions: {
keycloakifyBuildDirPath: string;
};
}) {
//TODO: Implement
}