mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-18 22:05:06 +08:00
Summary: That's bummer that we have to do it, but it's actually reasonable. Files in `core` and `events` depend on each other creating circular dependencies and other similar hard problem. Reviewed By: mdvacca Differential Revision: D14195022 fbshipit-source-id: 96a44ae28631cc9ccd7d7de72a94526f9e0dd12a
28 lines
598 B
C++
28 lines
598 B
C++
/**
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
#include <jsi/jsi.h>
|
|
#include <react/core/EventTarget.h>
|
|
#include <react/core/ValueFactory.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
using EventPipe = std::function<void(
|
|
jsi::Runtime &runtime,
|
|
const EventTarget *eventTarget,
|
|
const std::string &type,
|
|
const ValueFactory &payloadFactory)>;
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|