mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
e2628f93b5
Summary: * Cleanup some header files so we use more forward declarations * Rename Executor to JSExecutor.h * Move some typedefs to more appropriate locations Reviewed By: mhorowitz Differential Revision: D5301913 fbshipit-source-id: e75154797eb3f531d2f42a5e95409f4062b85f91
16 lines
296 B
C++
16 lines
296 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include <cxxreact/JSBigString.h>
|
|
#include <jschelpers/JavaScriptCore.h>
|
|
#include <jschelpers/Value.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
String jsStringFromBigString(JSContextRef ctx, const JSBigString& bigstr);
|
|
|
|
}
|
|
}
|