@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
11 lines • 499 B
TypeScript
import { type AnimationCallback, type ReduceMotion, type WithSpringConfig, type WithTimingConfig } from 'react-native-reanimated';
interface AnimateParams {
point: number;
velocity?: number;
configs?: WithSpringConfig | WithTimingConfig;
overrideReduceMotion?: ReduceMotion;
onComplete?: AnimationCallback;
}
export declare const animate: ({ point, configs, velocity, overrideReduceMotion, onComplete, }: AnimateParams) => number;
export {};
//# sourceMappingURL=animate.d.ts.map