1 | 'use strict';
|
2 | import type { Extrapolate as _Extrapolate } from './reanimated2/interpolateColor';
|
3 | import type { SharedValue as _SharedValue } from './reanimated2/commonTypes';
|
4 | import type { DerivedValue as _DerivedValue } from './reanimated2/hook/useDerivedValue';
|
5 | import type {
|
6 | TransformStyleTypes as _TransformStyleTypes,
|
7 | Adaptable as _Adaptable,
|
8 | AdaptTransforms as _AdaptTransforms,
|
9 | AnimatedTransform as _AnimatedTransform,
|
10 | AnimateStyle as _AnimateStyle,
|
11 | StylesOrDefault as _StylesOrDefault,
|
12 | AnimateProps as _AnimateProps,
|
13 | } from './reanimated2/helperTypes';
|
14 | import type { EasingFunction as _EasingFunction } from './reanimated2/Easing';
|
15 |
|
16 | import type { AnimatedScrollViewProps as _AnimatedScrollViewProps } from './reanimated2/component/ScrollView';
|
17 | import type { FlatListPropsWithLayout as _FlatListPropsWithLayout } from './reanimated2/component/FlatList';
|
18 |
|
19 | export { createAnimatedComponent } from './createAnimatedComponent';
|
20 | export { AnimatedText as Text } from './reanimated2/component/Text';
|
21 | export { AnimatedView as View } from './reanimated2/component/View';
|
22 | export { AnimatedScrollView as ScrollView } from './reanimated2/component/ScrollView';
|
23 | export { AnimatedImage as Image } from './reanimated2/component/Image';
|
24 | export { ReanimatedFlatList as FlatList } from './reanimated2/component/FlatList';
|
25 | export {
|
26 | addWhitelistedNativeProps,
|
27 | addWhitelistedUIProps,
|
28 | } from './ConfigHelper';
|
29 |
|
30 |
|
31 |
|
32 | export type Extrapolate = typeof _Extrapolate;
|
33 |
|
34 |
|
35 |
|
36 |
|
37 | export type SharedValue<T> = _SharedValue<T>;
|
38 |
|
39 |
|
40 |
|
41 | export type DerivedValue<T> = _DerivedValue<T>;
|
42 |
|
43 |
|
44 |
|
45 | export type Adaptable<T> = _Adaptable<T>;
|
46 |
|
47 |
|
48 |
|
49 | export type TransformStyleTypes = _TransformStyleTypes;
|
50 |
|
51 |
|
52 |
|
53 | export type AdaptTransforms<T> = _AdaptTransforms<T>;
|
54 |
|
55 |
|
56 |
|
57 | export type AnimatedTransform = _AnimatedTransform;
|
58 |
|
59 |
|
60 |
|
61 | export type AnimateStyle<S> = _AnimateStyle<S>;
|
62 |
|
63 |
|
64 |
|
65 | export type StylesOrDefault<S> = _StylesOrDefault<S>;
|
66 |
|
67 |
|
68 |
|
69 | export type AnimateProps<P extends object> = _AnimateProps<P>;
|
70 |
|
71 |
|
72 |
|
73 | export type EasingFunction = _EasingFunction;
|
74 |
|
75 |
|
76 |
|
77 | export type AnimatedScrollViewProps = _AnimatedScrollViewProps;
|
78 |
|
79 |
|
80 |
|
81 | export type FlatListPropsWithLayout<T> = _FlatListPropsWithLayout<T>;
|