Migrate ReactPackageLogger to kotlin (#48345)

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

Migrate ReactPackageLogger to kotlin

changelog: [internal] internal

Reviewed By: rshest

Differential Revision: D67420585

fbshipit-source-id: a82fc7f17828ef6ad36a666113673526eb723600
This commit is contained in:
David Vacca
2024-12-20 00:15:54 -08:00
committed by Facebook GitHub Bot
parent 23eb06f662
commit e9faea2f3e
@@ -5,12 +5,12 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react;
package com.facebook.react
/** Interface for the bridge to call for TTI start and end markers. */
public interface ReactPackageLogger {
void startProcessPackage();
public fun startProcessPackage(): Unit
void endProcessPackage();
public fun endProcessPackage(): Unit
}