File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
packages/react-native/Libraries Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,19 @@ export {default as Node} from './nodes/AnimatedNode';
24
24
export {default as Value} from './nodes/AnimatedValue';
25
25
export {default as ValueXY} from './nodes/AnimatedValueXY';
26
26
27
+ /** @deprecated Use Animated.Interpolation instead */
28
+ export type {default as AnimatedInterpolation} from './nodes/AnimatedInterpolation';
29
+ /** @deprecated Use Animated.Color instead */
30
+ export type {default as AnimatedColor} from './nodes/AnimatedColor';
31
+
27
32
export type {AnimatedValueConfig as AnimatedConfig} from './nodes/AnimatedValue';
33
+ export type {default as AnimatedNode} from './nodes/AnimatedNode';
34
+ export type {default as AnimatedAddition} from './nodes/AnimatedAddition';
35
+ export type {default as AnimatedDiffClamp} from './nodes/AnimatedDiffClamp';
36
+ export type {default as AnimatedDivision} from './nodes/AnimatedDivision';
37
+ export type {default as AnimatedModulo} from './nodes/AnimatedModulo';
38
+ export type {default as AnimatedMultiplication} from './nodes/AnimatedMultiplication';
39
+ export type {default as AnimatedSubtraction} from './nodes/AnimatedSubtraction';
28
40
29
41
export const add = AnimatedImplementation.add;
30
42
export const attachNativeEvent = AnimatedImplementation.attachNativeEvent;
Original file line number Diff line number Diff line change @@ -172,7 +172,16 @@ export { default as Interpolation } from \\"./nodes/AnimatedInterpolation\\";
172
172
export { default as Node } from \\"./nodes/AnimatedNode\\";
173
173
export { default as Value } from \\"./nodes/AnimatedValue\\";
174
174
export { default as ValueXY } from \\"./nodes/AnimatedValueXY\\";
175
+ export type { default as AnimatedInterpolation } from \\"./nodes/AnimatedInterpolation\\";
176
+ export type { default as AnimatedColor } from \\"./nodes/AnimatedColor\\";
175
177
export type { AnimatedValueConfig as AnimatedConfig } from \\"./nodes/AnimatedValue\\";
178
+ export type { default as AnimatedNode } from \\"./nodes/AnimatedNode\\";
179
+ export type { default as AnimatedAddition } from \\"./nodes/AnimatedAddition\\";
180
+ export type { default as AnimatedDiffClamp } from \\"./nodes/AnimatedDiffClamp\\";
181
+ export type { default as AnimatedDivision } from \\"./nodes/AnimatedDivision\\";
182
+ export type { default as AnimatedModulo } from \\"./nodes/AnimatedModulo\\";
183
+ export type { default as AnimatedMultiplication } from \\"./nodes/AnimatedMultiplication\\";
184
+ export type { default as AnimatedSubtraction } from \\"./nodes/AnimatedSubtraction\\";
176
185
declare export const add: $FlowFixMe;
177
186
declare export const attachNativeEvent: $FlowFixMe;
178
187
declare export const createAnimatedComponent: $FlowFixMe;
You can’t perform that action at this time.
0 commit comments