UNPKG

@moxb/stellar-router-react

Version:

Stellar router: React widgets

13 lines (12 loc) 452 B
/// <reference types="react" /> import { BoundLink } from '@moxb/stellar-router-core'; import { NavLinkParams } from './NavLink'; /** * To get all the props, take the presentation params (not the target specification!), and add the operation */ export interface BoundNavLinkProps extends NavLinkParams { operation: BoundLink; } export declare const BoundNavLink: ((props: BoundNavLinkProps) => JSX.Element | null) & { displayName: string; };