@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
10 lines (9 loc) • 346 B
TypeScript
import Animated from 'react-native-reanimated';
interface AnimateParams {
point: number;
velocity?: number;
configs?: Animated.WithSpringConfig | Animated.WithTimingConfig;
onComplete?: (isFinished: boolean) => void;
}
export declare const animate: ({ point, configs, velocity, onComplete, }: AnimateParams) => number;
export {};