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