react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
27 lines (24 loc) • 567 B
text/typescript
import type {
AnimatedComponentProps,
IAnimatedComponentInternal,
InitialComponentProps,
} from './commonTypes';
export default class JSPropsUpdaterWeb {
public addOnJSPropsChangeListener(
_animatedComponent: React.Component<
AnimatedComponentProps<InitialComponentProps>
> &
IAnimatedComponentInternal
) {
// noop
}
public removeOnJSPropsChangeListener(
_animatedComponent: React.Component<
AnimatedComponentProps<InitialComponentProps>
> &
IAnimatedComponentInternal
) {
// noop
}
}
;