react-native-micro-interactions
Version:
Effortlessly enhance your React Native components with subtle micro-interactions and animations.
10 lines • 476 B
TypeScript
import type { AnimationOptions, AnimationType } from '../types/animations';
interface AnimatedChildProps {
animationType: AnimationType;
animationOptions?: AnimationOptions;
addAnimation: (arg0: () => void) => void;
children: any;
}
declare function AnimatedChild({ animationType, animationOptions, addAnimation, children }: AnimatedChildProps): import("react/jsx-runtime").JSX.Element;
export default AnimatedChild;
//# sourceMappingURL=AnimatedChild.d.ts.map