UNPKG

663 BTypeScriptView Raw
1import * as React from 'react';
2import { Sizes } from 'react-bootstrap';
3
4declare namespace Nav {
5 export interface NavProps extends React.HTMLProps<Nav> {
6 // Optional
7 activeHref?: string;
8 activeKey?: any;
9 bsSize?: Sizes;
10 bsStyle?: string;
11 bsClass?: string;
12 collapsible?: boolean;
13 eventKey?: any;
14 expanded?: boolean;
15 justified?: boolean;
16 navbar?: boolean;
17 pullRight?: boolean;
18 right?: boolean;
19 stacked?: boolean;
20 ulClassName?: string;
21 ulId?: string;
22 }
23}
24declare class Nav extends React.Component<Nav.NavProps> { }
25export = Nav;