Add support for NavBrand construct

Adding support for NavBrand construct in newer react-bootstrap
This commit is contained in:
Gabriel Mak
2015-10-07 09:23:48 +01:00
parent e9be3cecf8
commit a20e020adc
+9
View File
@@ -459,6 +459,15 @@ declare module "react-bootstrap" {
interface Navbar extends React.ReactElement<NavbarProps> { }
interface NavbarClass extends React.ComponentClass<NavbarProps> { }
var Navbar: NavbarClass;
// <NavBrand />
// ----------------------------------------
interface NavBrandProps {
}
interface NavBrand extends React.ReactElement<NavbarProps> { }
interface NavBrandClass extends React.ComponentClass<NavbarProps> { }
var NavBrand: NavBrandClass;
// <NavDropdown />