UNPKG

@eviljs/reactx

Version:
13 lines (12 loc) 474 B
export declare function RouteArgs(props: RouteArgsProps): undefined | React.JSX.Element | React.ReactNode; export interface RouteArgsProps { children: React.ReactElement | Array<React.ReactElement>; fromProp?: undefined | string; guard?: undefined | string | RegExp; route: Array<{ fromArg: number; toProp: string; map?(arg: undefined | string): any; }> | ((args: Array<string>) => Record<string, any>); [key: string]: any; }