(
textInstance: TextInstance,
_oldText: string,
newText: string
)
| 343 | } |
| 344 | |
| 345 | commitTextUpdate( |
| 346 | textInstance: TextInstance, |
| 347 | _oldText: string, |
| 348 | newText: string |
| 349 | ): void { |
| 350 | debug("commitTextUpdate"); |
| 351 | textInstance.text = newText; |
| 352 | } |
| 353 | commitMount?( |
| 354 | _instance: Instance, |
| 355 | _type: Type, |