UNPKG

@keycloakify/keycloak-admin-ui

Version:
11 lines (10 loc) 472 B
import type { Path } from "react-router-dom"; import type { AppRouteObject } from "../../routes"; export type AuthenticationTab = "flows" | "required-actions" | "policies"; export type AuthenticationParams = { realm: string; tab?: AuthenticationTab; }; export declare const AuthenticationRoute: AppRouteObject; export declare const AuthenticationRouteWithTab: AppRouteObject; export declare const toAuthentication: (params: AuthenticationParams) => Partial<Path>;