react-native-navigation-bottom-sheet
Version:
A performant customizable bottom sheet component made on top of wix react-native-navigation library.
12 lines (11 loc) • 368 B
TypeScript
import Animated from 'react-native-reanimated';
/**
* Namespace for animated values associated with the bottom sheet.
*/
declare class AnimatedStoreSheet {
static _scrollToDragVal: Animated.Value<number>;
static _velocityY: Animated.Value<number>;
static _snappedToTop: Animated.Value<number>;
static init(): void;
}
export { AnimatedStoreSheet };