UNPKG

react-native-modern-elements

Version:

A modern, customizable UI component library for React Native

16 lines (15 loc) 542 B
export type AnimationType = "fade" | "fadeUp" | "fadeDown" | "fadeLeft" | "fadeRight" | "zoomIn" | "slideUp" | "slideDown" | "slideLeft" | "slideRight"; interface AnimationOptions { index?: number; duration?: number; damping?: number; delays?: number; stiffness?: number; mass?: number; } /** * Returns the corresponding Reanimated entering animation * Supports optional duration, damping, and stagger delay */ export declare const getAnimation: (type: AnimationType, options?: AnimationOptions) => any; export {};