You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
635 B
16 lines
635 B
import { Animated, ViewProps } from 'react-native';
|
|
import { RneFunctionComponent } from '../helpers';
|
|
declare const TabViewItem: RneFunctionComponent<ViewProps>;
|
|
export declare type TabViewProps = {
|
|
value?: number;
|
|
onChange?: (value: number) => any;
|
|
animationType?: 'spring' | 'timing';
|
|
animationConfig?: Omit<Animated.SpringAnimationConfig & Animated.TimingAnimationConfig, 'toValue'>;
|
|
};
|
|
declare const TabView: RneFunctionComponent<TabViewProps>;
|
|
interface TabView extends RneFunctionComponent<TabViewProps> {
|
|
Item: typeof TabViewItem;
|
|
}
|
|
declare const TabViewComponent: TabView;
|
|
export default TabViewComponent;
|