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