Skip to content

Commit

Permalink
Convert xplat/js/react-native-github/packages/react-native/ReactAndro…
Browse files Browse the repository at this point in the history
…id/src/main/java/com/facebook/react/uimanager/ComponentNameResolver to Kotlin

Differential Revision: D66403041
  • Loading branch information
mdvacca committed Dec 3, 2024
1 parent fa8a25e commit 0f41787
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
* LICENSE file in the root directory of this source tree.
*/

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

import com.facebook.proguard.annotations.DoNotStripAny;
import com.facebook.proguard.annotations.DoNotStripAny

@DoNotStripAny
public interface ComponentNameResolver {

/* returns a list of all the component names that are registered in React Native. */
String[] getComponentNames();
public val componentNames: Array<String>?
}

0 comments on commit 0f41787

Please sign in to comment.