mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5c7009d147
Reviewed By: yungsters Differential Revision: D4473401 fbshipit-source-id: 7c2a7484305a099fe6a49cbcd0a1d9d9d082a3f8
13 lines
302 B
Java
13 lines
302 B
Java
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
package com.facebook.react.bridge;
|
|
|
|
/**
|
|
* Interface on native modules for the bridge to call for TTI start and end markers.
|
|
*/
|
|
public interface NativeModuleLogger {
|
|
|
|
void startConstantsMapConversion();
|
|
void endConstantsMapConversion();
|
|
}
|