/** * 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 | ReactPortal | ReactText | ReactFragment | ReactProvider | ReactConsumer | ReactEventComponent | ReactEventTarget; export type ReactEmpty = null | void | boolean; export type ReactFragment = ReactEmpty | Iterable; export type ReactNodeList = ReactEmpty | React$Node; export type ReactText = string | number; export type ReactProvider = { $$typeof: Symbol | number, type: ReactProviderType, key: null | string, ref: null, props: { value: T, children?: ReactNodeList, }, }; export type ReactProviderType = { $$typeof: Symbol | number, _context: ReactContext, }; export type ReactConsumer = { $$typeof: Symbol | number, type: ReactContext, key: null | string, ref: null, props: { children: (value: T) => ReactNodeList, unstable_observedBits?: number, }, }; export type ReactContext = { $$typeof: Symbol | number, Consumer: ReactContext, Provider: ReactProviderType, _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, |}; export type ReactEventComponentInstance = {| currentFiber: mixed, isHook: boolean, props: Object, responder: ReactEventResponder, rootEventTypes: null | Set, rootInstance: null | mixed, state: Object, |}; export type ReactEventResponder = { displayName: string, targetEventTypes?: Array, rootEventTypes?: Array, createInitialState?: (props: Object) => Object, allowMultipleHostChildren: boolean, allowEventHooks: boolean, onEvent?: (event: E, context: C, props: Object, state: Object) => void, onEventCapture?: (event: E, context: C, props: Object, state: Object) => void, onRootEvent?: (event: E, context: C, props: Object, state: Object) => void, onMount?: (context: C, props: Object, state: Object) => void, onUnmount?: (context: C, props: Object, state: Object) => void, onOwnershipChange?: (context: C, props: Object, state: Object) => void, }; export type ReactEventComponent = {| $$typeof: Symbol | number, responder: ReactEventResponder, |}; export type ReactEventTarget = {| $$typeof: Symbol | number, displayName?: string, type: Symbol | number, |}; export opaque type EventPriority = 0 | 1 | 2; export const DiscreteEvent: EventPriority = 0; export const UserBlockingEvent: EventPriority = 1; export const ContinuousEvent: EventPriority = 2;