GoScrobble/web/node_modules/react-bootstrap/cjs/NavLink.d.ts

14 lines
477 B
TypeScript

import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent, SelectCallback } from './helpers';
import { EventKey } from './types';
export interface NavLinkProps extends BsPrefixPropsWithChildren {
active?: boolean;
disabled?: boolean;
role?: string;
href?: string;
onSelect?: SelectCallback;
eventKey?: EventKey;
}
declare type NavLink = BsPrefixRefForwardingComponent<'a', NavLinkProps>;
declare const NavLink: NavLink;
export default NavLink;