keycloakify
Version:
Framework to create custom Keycloak UIs
11 lines (10 loc) • 368 B
TypeScript
import type { BuildContext } from "../shared/buildContext";
export type BuildContextLike = {
bundler: BuildContext["bundler"];
projectDirPath: string;
packageJsonFilePath: string;
};
export declare function updateAccountThemeImplementationInConfig(params: {
buildContext: BuildContextLike;
accountThemeType: "Single-Page" | "Multi-Page";
}): void;