react-nativescript
Version:
React renderer for NativeScript
32 lines (31 loc) • 1.39 kB
TypeScript
/**
* Code in here from: https://github.com/facebook/react/blob/856dc5e43352454b1d06c13e233d565ceda77e61/packages/react-reconciler/src/ReactWorkTags.js which carries the following copyright:
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export declare const FunctionComponent = 0;
export declare const ClassComponent = 1;
export declare const IndeterminateComponent = 2;
export declare const HostRoot = 3;
export declare const HostPortal = 4;
export declare const HostComponent = 5;
export declare const HostText = 6;
export declare const Fragment = 7;
export declare const Mode = 8;
export declare const ContextConsumer = 9;
export declare const ContextProvider = 10;
export declare const ForwardRef = 11;
export declare const Profiler = 12;
export declare const SuspenseComponent = 13;
export declare const MemoComponent = 14;
export declare const SimpleMemoComponent = 15;
export declare const LazyComponent = 16;
export declare const IncompleteClassComponent = 17;
export declare const DehydratedFragment = 18;
export declare const SuspenseListComponent = 19;
export declare const ScopeComponent = 21;
export declare const OffscreenComponent = 22;
export declare const LegacyHiddenComponent = 23;
export declare const CacheComponent = 24;