DefinitelyTyped/types/react-primitives/index.d.ts
Ahmed Ghoneim 566e039485 Add Types for react-primitives (#26973)
* add types for react-primitives

* Add new lines

* remove custom linting rules
2018-07-02 21:07:31 -07:00

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.6
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
};