Skip to content

Commit

Permalink
Kotlinify Systrace
Browse files Browse the repository at this point in the history
Differential Revision: D55796784
  • Loading branch information
Fabrizio Cucci authored and facebook-github-bot committed Apr 5, 2024
1 parent d3e276e commit 5c2c08b
Showing 1 changed file with 4 additions and 5 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.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)
}

0 comments on commit 5c2c08b

Please sign in to comment.