mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* feat(react-dependents): update to ts 2.8 * fix version mismatches * remove package.json * post merge updates * add package.json back again
34 lines
680 B
TypeScript
34 lines
680 B
TypeScript
// Type definitions for react-primitives 0.6
|
|
// Project: https://github.com/lelandrichardson/react-primitives
|
|
// Definitions by: Ahmed Ghoneim <https://github.com/aghoneim92>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import { ComponentType } from 'react';
|
|
import {
|
|
Animated,
|
|
Dimensions,
|
|
Easing,
|
|
Image,
|
|
PixelRatio,
|
|
Platform,
|
|
StyleSheet,
|
|
Text,
|
|
TouchableOpacityProps,
|
|
View
|
|
} from 'react-native';
|
|
|
|
export const Touchable: ComponentType<TouchableOpacityProps>;
|
|
|
|
export {
|
|
Animated,
|
|
Dimensions,
|
|
Easing,
|
|
Image,
|
|
PixelRatio,
|
|
Platform,
|
|
StyleSheet,
|
|
Text,
|
|
View
|
|
};
|