mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-13 00:28:42 +08:00
31 lines
682 B
TypeScript
31 lines
682 B
TypeScript
declare module 'react-navigation-tabs' {
|
|
import './BottomTabBar'
|
|
import './MaterialTopTabBar'
|
|
|
|
import {
|
|
BottomTabBar,
|
|
BottomTabBarProps,
|
|
} from 'react-navigation-tabs/src/views/BottomTabBar'
|
|
import {
|
|
MaterialTopTabBar,
|
|
MaterialTopTabBarProps,
|
|
} from 'react-navigation-tabs/src/views/MaterialTopTabBar'
|
|
|
|
/**
|
|
* Navigators
|
|
*/
|
|
// export type createBottomTabNavigator = any
|
|
// export type createMaterialTopTabNavigator = any
|
|
|
|
/**
|
|
* Views
|
|
*/
|
|
export { BottomTabBar, BottomTabBarProps }
|
|
export { MaterialTopTabBar, MaterialTopTabBarProps }
|
|
|
|
/**
|
|
* Utils
|
|
*/
|
|
export function createTabNavigator(routes: any, config?: object): any
|
|
}
|