mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
12 lines
453 B
TypeScript
12 lines
453 B
TypeScript
import { BsPrefixProps, BsPrefixRefForwardingComponent, TransitionCallbacks, TransitionType } from './helpers';
|
|
export interface TabPaneProps extends TransitionCallbacks, BsPrefixProps {
|
|
eventKey?: any;
|
|
active?: boolean;
|
|
transition?: TransitionType;
|
|
mountOnEnter?: boolean;
|
|
unmountOnExit?: boolean;
|
|
}
|
|
declare type TabPane = BsPrefixRefForwardingComponent<'div', TabPaneProps>;
|
|
declare const TabPane: TabPane;
|
|
export default TabPane;
|