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';
2424export {default as Value} from './nodes/AnimatedValue';
2525export {default as ValueXY} from './nodes/AnimatedValueXY';
2626
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+
2732export 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';
2840
2941export const add = AnimatedImplementation.add;
3042export 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\\";
172172export { default as Node } from \\"./nodes/AnimatedNode\\";
173173export { default as Value } from \\"./nodes/AnimatedValue\\";
174174export { default as ValueXY } from \\"./nodes/AnimatedValueXY\\";
175+ export type { default as AnimatedInterpolation } from \\"./nodes/AnimatedInterpolation\\";
176+ export type { default as AnimatedColor } from \\"./nodes/AnimatedColor\\";
175177export 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\\";
176185declare export const add: $FlowFixMe;
177186declare export const attachNativeEvent: $FlowFixMe;
178187declare export const createAnimatedComponent: $FlowFixMe;
You can’t perform that action at this time.
0 commit comments