@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
16 lines (15 loc) • 564 B
TypeScript
import "../../realm-settings-section.css";
type TranslationForm = {
locale: string;
value: string;
};
type Translations = {
key: string;
translations: TranslationForm[];
};
export type AttributeGeneralSettingsProps = {
onHandlingTranslationData: (data: Translations) => void;
onHandlingGeneratedDisplayName: (displayName: string) => void;
};
export declare const AttributeGeneralSettings: ({ onHandlingTranslationData, onHandlingGeneratedDisplayName, }: AttributeGeneralSettingsProps) => import("react/jsx-runtime").JSX.Element;
export {};