( domElement: Instance, type: string, oldProps: Props, newProps: Props, internalInstanceHandle: Object, )
| 910 | } |
| 911 | |
| 912 | export function commitUpdate( |
| 913 | domElement: Instance, |
| 914 | type: string, |
| 915 | oldProps: Props, |
| 916 | newProps: Props, |
| 917 | internalInstanceHandle: Object, |
| 918 | ): void { |
| 919 | // Diff and update the properties. |
| 920 | updateProperties(domElement, type, oldProps, newProps); |
| 921 | |
| 922 | // Update the props handle so that we know which props are the ones with |
| 923 | // with current event handlers. |
| 924 | updateFiberProps(domElement, newProps); |
| 925 | } |
| 926 | |
| 927 | export function resetTextContent(domElement: Instance): void { |
| 928 | setTextContent(domElement, ''); |
nothing calls this directly
no test coverage detected