@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
15 lines (14 loc) • 628 B
TypeScript
import type ClientScopeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientScopeRepresentation";
import { AllClientScopeType } from "../../components/client-scope/ClientScopeTypes";
import "./client-scopes.css";
export type ClientScopesProps = {
clientId: string;
protocol: string;
clientName: string;
fineGrainedAccess?: boolean;
};
export type Row = ClientScopeRepresentation & {
type: AllClientScopeType;
description?: string;
};
export declare const ClientScopes: ({ clientId, protocol, clientName, fineGrainedAccess, }: ClientScopesProps) => import("react/jsx-runtime").JSX.Element;