react-nativescript
Version:
React renderer for NativeScript
16 lines (15 loc) • 870 B
TypeScript
/**
* Code in here referenced from:
* https://github.com/facebook/react/blob/master/packages/react-dom/src/client/ReactDOMHostConfig.js
* https://github.com/facebook/react/blob/6a1e6b2f78da3a56aa497902951c6e9ce654eafc/packages/react-native-renderer/src/ReactNativeHostConfig.js
* ... which both carry the following copyright:
*
* 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.
*/
import * as ReactReconciler from "react-reconciler";
import { Instance, Container, PublicInstance, SuspenseInstance } from "../shared/HostConfigTypes";
import { NSVText } from "../nativescript-vue-next/runtime/nodes";
export declare const reactReconcilerInst: ReactReconciler.Reconciler<Container, Instance, NSVText, SuspenseInstance, PublicInstance>;