@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
10 lines (9 loc) • 421 B
TypeScript
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>;