/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v18.3.1
packages/react/index.js
84 строки
2 KB
Rick Hanlon
Export `React.act` from 18.3
26 апр 2024, 19:17
26 апр 2024, 19:17
f1338f8
Код
Авторство
О чём код?
/** * 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 */ // Keep in sync with https://github.com/facebook/flow/blob/main/lib/react.js export type StatelessFunctionalComponent< P, > = React$StatelessFunctionalComponent<P>; export type ComponentType<-P> = React$ComponentType<P>; export type AbstractComponent< -Config, +Instance = mixed, > = React$AbstractComponent<Config, Instance>; export type ElementType = React$ElementType; export type Element<+C> = React$Element<C>; export type Key = React$Key; export type Ref<C> = React$Ref<C>; export type Node = React$Node; export type Context<T> = React$Context<T>; export type Portal = React$Portal; export type ElementProps<C> = React$ElementProps<C>; export type ElementConfig<C> = React$ElementConfig<C>; export type ElementRef<C> = React$ElementRef<C>; export type Config<Props, DefaultProps> = React$Config<Props, DefaultProps>; export type ChildrenArray<+T> = $ReadOnlyArray<ChildrenArray<T>> | T; // Export all exports so that they're available in tests. // We can't use export * from in Flow for some reason. export { __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, act, act as unstable_act, Children, Component, Fragment, Profiler, PureComponent, StrictMode, Suspense, SuspenseList, cloneElement, createContext, createElement, createFactory, createMutableSource, createRef, createServerContext, forwardRef, isValidElement, lazy, memo, startTransition, unstable_Cache, unstable_DebugTracingMode, unstable_LegacyHidden, unstable_Offscreen, unstable_Scope, unstable_TracingMarker, unstable_getCacheSignal, unstable_getCacheForType, unstable_useCacheRefresh, useId, useCallback, useContext, useDebugValue, useDeferredValue, useEffect, useImperativeHandle, useInsertionEffect, useLayoutEffect, useMemo, useMutableSource, useSyncExternalStore, useReducer, useRef, useState, useTransition, version, } from './src/React';