UNPKG

389 BTypeScriptView Raw
1import * as React from 'react';
2
3declare namespace TabContainer {
4 export interface TabContainerProps extends React.HTMLAttributes<TabContainer> {
5 activeKey?: any;
6 defaultActiveKey?: any;
7 generateChildId?: (eventKey: any, type: any) => string;
8 }
9}
10declare class TabContainer extends React.Component<TabContainer.TabContainerProps> { }
11export = TabContainer;