UNPKG

@grafana/faro-react

Version:

Faro package that enables easier integration in projects built with React.

17 lines (16 loc) 484 B
import type { ReactRouterHistory } from '../types'; export type ReactRouterV4V5RouteShape = any; export interface ReactRouterV4V5RouteProps extends Record<string, any> { computedMatch?: { isExact: boolean; path: string; }; } export interface ReactRouterV4V5Dependencies { history: ReactRouterHistory; Route: ReactRouterV4V5RouteShape; } export interface ReactRouterV4V5ActiveEvent extends Record<string, string> { route: string; url: string; }