mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
13 lines
494 B
TypeScript
13 lines
494 B
TypeScript
|
import { BsPrefixProps, BsPrefixRefForwardingComponent, TransitionCallbacks, TransitionType } from './helpers';
|
||
|
import { EventKey } from './types';
|
||
|
export interface TabPaneProps extends TransitionCallbacks, BsPrefixProps {
|
||
|
eventKey?: EventKey;
|
||
|
active?: boolean;
|
||
|
transition?: TransitionType;
|
||
|
mountOnEnter?: boolean;
|
||
|
unmountOnExit?: boolean;
|
||
|
}
|
||
|
declare type TabPane = BsPrefixRefForwardingComponent<'div', TabPaneProps>;
|
||
|
declare const TabPane: TabPane;
|
||
|
export default TabPane;
|