UNPKG

@keycloakify/keycloak-admin-ui

Version:
12 lines (11 loc) 458 B
import type { Path } from "react-router-dom"; import type { AppRouteObject } from "../../routes"; export type IdentityProviderTab = "settings" | "mappers" | "permissions"; export type IdentityProviderParams = { realm: string; providerId: string; alias: string; tab: IdentityProviderTab; }; export declare const IdentityProviderRoute: AppRouteObject; export declare const toIdentityProvider: (params: IdentityProviderParams) => Partial<Path>;