Skip to content

Commit

Permalink
Migrate UIBlock to Kotlin
Browse files Browse the repository at this point in the history
Summary:
Migrate UIBlock to Kotlin

changelog: [internal] internal

Differential Revision: D67187378
  • Loading branch information
mdvacca committed Dec 16, 2024
1 parent 50f956e commit b37d5ac
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.react.uimanager;
package com.facebook.react.uimanager

/** A task to execute on the UI View for third party libraries. */
public interface UIBlock {
public void execute(NativeViewHierarchyManager nativeViewHierarchyManager);
public fun interface UIBlock {
public fun execute(nativeViewHierarchyManager: NativeViewHierarchyManager?): Unit
}

0 comments on commit b37d5ac

Please sign in to comment.