@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
11 lines (10 loc) • 473 B
TypeScript
import { ReactNode } from "react";
import type CredentialRepresentation from "@keycloak/keycloak-admin-client/lib/defs/credentialRepresentation";
type CredentialRowProps = {
credential: CredentialRepresentation;
resetPassword: () => void;
toggleDelete: () => void;
children: ReactNode;
};
export declare const CredentialRow: ({ credential, resetPassword, toggleDelete, children, }: CredentialRowProps) => import("react/jsx-runtime").JSX.Element;
export {};