1 | "use strict";
|
2 |
|
3 | Object.defineProperty(exports, "__esModule", {
|
4 | value: true
|
5 | });
|
6 | exports.Motion = void 0;
|
7 | var _reactNative = require("react-native");
|
8 | var _createMotionComponent = require("./createMotionComponent");
|
9 | var _MotionPressable = require("./MotionPressable");
|
10 | let Motion;
|
11 | exports.Motion = Motion;
|
12 | (function (_Motion) {
|
13 | const View = _Motion.View = (0, _createMotionComponent.createMotionComponent)(_reactNative.Animated.View);
|
14 | const Text = _Motion.Text = (0, _createMotionComponent.createMotionComponent)(_reactNative.Animated.Text);
|
15 | const FlatList = _Motion.FlatList = (0, _createMotionComponent.createMotionComponent)(_reactNative.Animated.FlatList);
|
16 | const Image = _Motion.Image = (0, _createMotionComponent.createMotionComponent)(_reactNative.Animated.Image);
|
17 | const ScrollView = _Motion.ScrollView = (0, _createMotionComponent.createMotionComponent)(_reactNative.Animated.ScrollView);
|
18 | const SectionList = _Motion.SectionList = (0, _createMotionComponent.createMotionComponent)(_reactNative.Animated.SectionList);
|
19 | const Pressable = _Motion.Pressable = _MotionPressable.MotionPressable;
|
20 | })(Motion || (exports.Motion = Motion = {}));
|
21 |
|
\ | No newline at end of file |