UNPKG

@keycloakify/keycloak-admin-ui

Version:
11 lines (10 loc) 462 B
import type { Path } from "react-router-dom"; import type { AppRouteObject } from "../../routes"; export type UserTab = "settings" | "groups" | "organizations" | "consents" | "attributes" | "sessions" | "credentials" | "role-mapping" | "identity-provider-links"; export type UserParams = { realm: string; id: string; tab: UserTab; }; export declare const UserRoute: AppRouteObject; export declare const toUser: (params: UserParams) => Partial<Path>;