File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
types/react-bootstrap/lib Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as React from "react";
22import { SelectCallback , Sizes } from "react-bootstrap" ;
33
44declare namespace NavItem {
5- export interface NavItemProps extends React . HTMLProps < NavItem > {
5+ export interface NavItemProps extends Omit < React . HTMLProps < NavItem > , "onToggle" > {
66 active ?: boolean | undefined ;
77 brand ?: any ; // TODO: Add more specific type
88 bsSize ?: Sizes | undefined ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import NavbarHeader = require("./NavbarHeader");
66import NavbarToggle = require( "./NavbarToggle" ) ;
77
88declare namespace Navbar {
9- export interface NavbarProps extends React . HTMLProps < Navbar > {
9+ export interface NavbarProps extends Omit < React . HTMLProps < Navbar > , "onToggle" > {
1010 brand ?: any ; // TODO: Add more specific type
1111 bsSize ?: Sizes | undefined ;
1212 bsStyle ?: string | undefined ;
You can’t perform that action at this time.
0 commit comments