Kotlinify Systrace (#43917)

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

Changelog: [Internal]

As part of the Sustainability Week (see [post](https://fb.workplace.com/groups/251759413609061/permalink/742797531171911/)).

Reviewed By: cortinico

Differential Revision: D55796784

fbshipit-source-id: f793e94cee18af717b9de7a09ae8c478f2a3d5fe
This commit is contained in:
Fabrizio Cucci
2024-04-05 16:32:55 -07:00
committed by Facebook GitHub Bot
parent 0ee40aac39
commit 93a2dd9545
@@ -5,13 +5,12 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.bridge;
package com.facebook.react.bridge
import com.facebook.proguard.annotations.DoNotStrip;
import com.facebook.proguard.annotations.DoNotStrip
/** Interface to the JavaScript Systrace Module */
@DoNotStrip
public interface Systrace extends JavaScriptModule {
@DoNotStrip
void setEnabled(boolean enabled);
public interface Systrace : JavaScriptModule {
@DoNotStrip public fun setEnabled(enabled: Boolean)
}