mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
13 lines
349 B
TypeScript
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;
|