UNPKG

@keycloakify/keycloak-admin-ui

Version:
15 lines (14 loc) 628 B
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;