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
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
interface Props {
|
|
inline?: boolean;
|
|
disabled?: boolean;
|
|
tabs?: boolean;
|
|
pills?: boolean;
|
|
stacked?: boolean;
|
|
navbar?: boolean;
|
|
tag?: React.ReactType;
|
|
className?: string;
|
|
}
|
|
|
|
declare var Nav: React.StatelessComponent<Props>;
|
|
export default Nav; |