@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
15 lines (14 loc) • 686 B
TypeScript
import type AuthenticationFlowRepresentation from "@keycloak/keycloak-admin-client/lib/defs/authenticationFlowRepresentation";
import RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
import { UsedBy } from "../authentication/components/UsedBy";
type UsedBy = "SPECIFIC_CLIENTS" | "SPECIFIC_PROVIDERS" | "DEFAULT";
export type AuthenticationType = AuthenticationFlowRepresentation & {
usedBy?: {
type?: UsedBy;
values: string[];
};
realm: RealmRepresentation;
};
export declare const REALM_FLOWS: Map<string, string>;
export default function AuthenticationSection(): import("react/jsx-runtime").JSX.Element;
export {};