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