What is the Typescript Typing for scrollXAnimated
in React Native? I've looked through the docs and haven't seen anything for this.
TypeScript Type:
// TypeScript Type: Propsinterface Props { scrollXAnimated: any, // WHAT CAN I ADD INSTEAD OF ANY? data: any,};
The Code:
const translateY = props.scrollXAnimated.interpolate({ inputRange: [-1, 0, 1], outputRange: [HEADER_HEIGHT, 0, -HEADER_HEIGHT], });