/** * Copyright (c) Facebook, Inc. and its affiliates. * *

This source code is licensed under the MIT license found in the LICENSE file in the root * directory of this source tree. */ package com.facebook.react.fabric; import com.facebook.react.bridge.JavaScriptContextHolder; import com.facebook.react.bridge.queue.MessageQueueThread; import com.facebook.react.fabric.jsi.ComponentFactoryDelegate; import com.facebook.react.fabric.jsi.EventBeatManager; public interface FabricBinding { // TODO: T31905686 change types of UIManager and EventBeatManager when moving to OSS void register( JavaScriptContextHolder jsContext, FabricUIManager fabricUIManager, EventBeatManager eventBeatManager, MessageQueueThread jsMessageQueueThread, ComponentFactoryDelegate componentFactoryDelegate); void unregister(); }