mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-27 19:22:47 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
interface Props {
|
|
light?: boolean;
|
|
inverse?: boolean;
|
|
full?: boolean;
|
|
fixed?: string;
|
|
sticky?: string;
|
|
color?: string;
|
|
role?: string;
|
|
tag?: React.ReactType;
|
|
className?: string;
|
|
toggleable?: boolean | string;
|
|
}
|
|
|
|
declare var Navbar: React.StatelessComponent<Props>;
|
|
export default Navbar; |