@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
9 lines (8 loc) • 304 B
TypeScript
type SamlKeysProps = {
clientId: string;
save: () => void;
};
declare const KEYS: readonly ["saml.signing", "saml.encryption"];
export type KeyTypes = (typeof KEYS)[number];
export declare const SamlKeys: ({ clientId, save }: SamlKeysProps) => import("react/jsx-runtime").JSX.Element;
export {};