mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
interface Props {
|
|
tag?: React.ReactType;
|
|
disabled?: boolean;
|
|
active?: boolean;
|
|
className?: string;
|
|
onClick?: React.MouseEventHandler<any>;
|
|
href?: string;
|
|
}
|
|
|
|
declare var NavLink: React.StatelessComponent<Props>;
|
|
export default NavLink; |