UNPKG

567 BPlain TextView Raw
1'use strict';
2import type {
3 AnimatedComponentProps,
4 IAnimatedComponentInternal,
5 InitialComponentProps,
6} from './commonTypes';
7
8export default class JSPropsUpdaterWeb {
9 public addOnJSPropsChangeListener(
10 _animatedComponent: React.Component<
11 AnimatedComponentProps<InitialComponentProps>
12 > &
13 IAnimatedComponentInternal
14 ) {
15 // noop
16 }
17
18 public removeOnJSPropsChangeListener(
19 _animatedComponent: React.Component<
20 AnimatedComponentProps<InitialComponentProps>
21 > &
22 IAnimatedComponentInternal
23 ) {
24 // noop
25 }
26}