@types/react-bootstrap
Version:
TypeScript definitions for react-bootstrap
12 lines (10 loc) • 403 B
TypeScript
import * as React from 'react';
declare namespace TabContainer {
export interface TabContainerProps extends React.HTMLAttributes<TabContainer> {
activeKey?: any;
defaultActiveKey?: any;
generateChildId?: ((eventKey: any, type: any) => string) | undefined;
}
}
declare class TabContainer extends React.Component<TabContainer.TabContainerProps> { }
export = TabContainer;