react-native-easy-tabs
Version:
Easy tabs to use in your react native application
23 lines (18 loc) • 591 B
TypeScript
declare module "react-native-easy-tabs" {
import * as React from 'react';
import { ViewProperties } from 'react-native';
interface TabProps {
lazy?: boolean;
}
export class Tab extends React.PureComponent<TabProps, any> {}
interface TabViewProps extends ViewProperties {
animationDuration?: number;
layoutWidth?: number;
animated?: boolean;
easing?: boolean;
selectedTabIndex: number;
useAbsoluteViews?: boolean;
children: React.ElementType | React.ElementType[];
}
export class TabView extends React.PureComponent<TabViewProps, any> {}
}