Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/TabContext.d.ts
2020-07-08 12:08:03 +01:00

13 lines
349 B
TypeScript

import React from 'react';
export interface TabContextType {
onSelect: any;
activeKey: any;
transition: any;
mountOnEnter: boolean;
unmountOnExit: boolean;
getControlledId: (key: any) => any;
getControllerId: (key: any) => any;
}
declare const TabContext: React.Context<TabContextType | null>;
export default TabContext;