Migrate ScrollWatcher to Kotlin (#48742)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/48742

Migrate ScrollWatcher to Kotlin

changelog: [internal] internal

Reviewed By: tdn120

Differential Revision: D68278771

fbshipit-source-id: 550c3b6c83999b1d610cb3d75ec91f552d89c028
This commit is contained in:
David Vacca
2025-01-16 11:36:06 -08:00
committed by Facebook GitHub Bot
parent 40c18e1259
commit c5041ea099
@@ -5,8 +5,8 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.views.textinput;
package com.facebook.react.views.textinput
public interface ScrollWatcher {
void onScrollChanged(int horiz, int vert, int oldHoriz, int oldVert);
public fun onScrollChanged(horiz: Int, vert: Int, oldHoriz: Int, oldVert: Int): Unit
}