UNPKG

@keycloakify/keycloak-admin-ui

Version:
12 lines (11 loc) 584 B
import type ScopeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/scopeRepresentation"; import type { PermissionScopeRepresentation } from "../../clients/authorization/Scopes"; type DeleteScopeDialogProps = { clientId: string; selectedScope: PermissionScopeRepresentation | ScopeRepresentation | undefined; refresh: () => void; open: boolean; toggleDialog: () => void; }; export declare const DeleteScopeDialog: ({ clientId, selectedScope, refresh, open, toggleDialog, }: DeleteScopeDialogProps) => import("react/jsx-runtime").JSX.Element; export {};