Skip to content

Commit

Permalink
Migrate ComponentNameResolver to kotlin (facebook#47919)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#47919

Migrate ComponentNameResolver to kotlin

changelog: [Android][Changed] Migrate ComponentNameResolver to kotlin

Reviewed By: javache

Differential Revision: D66403041
  • Loading branch information
mdvacca committed Dec 2, 2024
1 parent 215b0a5 commit 3d27592
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 3d27592

Please sign in to comment.