/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v19.2.0
packages/react/index.js
74 строки
2 KB
Jack Pope
Bump useEffectEvent to Canary (#34610)
26 сен 2025, 18:51
Не верифицирован
26 сен 2025, 18:51
8bb7241
Код
Авторство
О чём код?
/** * 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. * * @flow */ // Keep in sync with https://github.com/facebook/flow/blob/main/lib/react.js export type ElementType = React$ElementType; export type Element<+C> = React$Element<C>; export type MixedElement = React$Element<ElementType>; export type Key = React$Key; export type Node = React$Node; export type Context<T> = React$Context<T>; export type Portal = React$Portal; export type RefSetter<-I> = React$RefSetter<I>; export type ElementProps<C> = React$ElementProps<C>; export type ElementConfig<C> = React$ElementConfig<C>; export type ElementRef<C> = React$ElementRef<C>; export type ChildrenArray<+T> = $ReadOnlyArray<ChildrenArray<T>> | T; export { __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, __COMPILER_RUNTIME, Children, Component, Fragment, Profiler, PureComponent, StrictMode, Suspense, cloneElement, createContext, createElement, createRef, use, forwardRef, isValidElement, lazy, memo, cache, cacheSignal, startTransition, unstable_LegacyHidden, Activity, unstable_Scope, unstable_SuspenseList, unstable_TracingMarker, unstable_ViewTransition, unstable_addTransitionType, unstable_getCacheForType, unstable_useCacheRefresh, useId, useCallback, useContext, useDebugValue, useDeferredValue, useEffect, useEffectEvent, useImperativeHandle, useInsertionEffect, useLayoutEffect, useMemo, useOptimistic, useSyncExternalStore, useReducer, useRef, useState, useTransition, useActionState, version, } from './src/ReactClient';