UNPKG

@keycloakify/keycloak-admin-ui

Version:
10 lines (9 loc) 332 B
import type { Path } from "react-router-dom"; import type { AppRouteObject } from "../../routes"; export type KeySubTab = "list" | "providers"; export type KeysParams = { realm: string; tab: KeySubTab; }; export declare const KeysRoute: AppRouteObject; export declare const toKeysTab: (params: KeysParams) => Partial<Path>;