UNPKG

@keycloakify/keycloak-admin-ui

Version:
10 lines (9 loc) 421 B
import type { Path } from "react-router-dom"; import type { AppRouteObject } from "../../routes"; export type UserProfileTab = "attributes" | "attributes-group" | "unmanaged-attributes" | "json-editor"; export type UserProfileParams = { realm: string; tab: UserProfileTab; }; export declare const UserProfileRoute: AppRouteObject; export declare const toUserProfile: (params: UserProfileParams) => Partial<Path>;