mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
14 lines
477 B
TypeScript
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;
|