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