mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
34 lines
882 B
JavaScript
34 lines
882 B
JavaScript
/**
|
|
* 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 type for SyntheticEvent class that includes private properties
|
|
* @flow
|
|
*/
|
|
|
|
import type {Fiber} from 'react-reconciler/src/ReactFiber';
|
|
import type {TopLevelType} from './TopLevelEventTypes';
|
|
|
|
export type DispatchConfig = {
|
|
dependencies: Array<TopLevelType>,
|
|
phasedRegistrationNames?: {
|
|
bubbled: string,
|
|
captured: string,
|
|
},
|
|
registrationName?: string,
|
|
isInteractive?: boolean,
|
|
};
|
|
|
|
export type ReactSyntheticEvent = {
|
|
dispatchConfig: DispatchConfig,
|
|
getPooled: (
|
|
dispatchConfig: DispatchConfig,
|
|
targetInst: Fiber,
|
|
nativeTarget: Event,
|
|
nativeEventTarget: EventTarget,
|
|
) => ReactSyntheticEvent,
|
|
isPersistent: () => boolean,
|
|
} & SyntheticEvent<>;
|