( prevProps: Object, nextProps: Object, validAttributes: AttributeConfiguration, )
| 479 | } |
| 480 | |
| 481 | export function diff( |
| 482 | prevProps: Object, |
| 483 | nextProps: Object, |
| 484 | validAttributes: AttributeConfiguration, |
| 485 | ): null | Object { |
| 486 | return diffProperties( |
| 487 | null, // updatePayload |
| 488 | prevProps, |
| 489 | nextProps, |
| 490 | validAttributes, |
| 491 | ); |
| 492 | } |
no test coverage detected