UNPKG

ppr-react-native

Version:

A framework for building native apps using React

81 lines (66 loc) 1.67 kB
/** * 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. * * @flow */ export type ReactNode = | React$Element<any> | ReactPortal | ReactText | ReactFragment | ReactProvider<any> | ReactConsumer<any>; export type ReactEmpty = null | void | boolean; export type ReactFragment = ReactEmpty | Iterable<React$Node>; export type ReactNodeList = ReactEmpty | React$Node; export type ReactText = string | number; export type ReactProvider<T> = { $$typeof: Symbol | number, type: ReactProviderType<T>, key: null | string, ref: null, props: { value: T, children?: ReactNodeList, }, }; export type ReactProviderType<T> = { $$typeof: Symbol | number, _context: ReactContext<T>, }; export type ReactConsumer<T> = { $$typeof: Symbol | number, type: ReactContext<T>, key: null | string, ref: null, props: { children: (value: T) => ReactNodeList, unstable_observedBits?: number, }, }; export type ReactContext<T> = { $$typeof: Symbol | number, Consumer: ReactContext<T>, Provider: ReactProviderType<T>, _calculateChangedBits: ((a: T, b: T) => number) | null, _currentValue: T, _currentValue2: T, _threadCount: number, // DEV only _currentRenderer?: Object | null, _currentRenderer2?: Object | null, }; export type ReactPortal = { $$typeof: Symbol | number, key: null | string, containerInfo: any, children: ReactNodeList, // TODO: figure out the API for cross-renderer implementation. implementation: any, }; export type RefObject = {| current: any, |};