import type {EventPriority} from 'react-reconciler/src/ReactEventPriorities';
import type {HostDispatcher} from './shared/ReactDOMTypes';
import {NoEventPriority} from 'react-reconciler/src/ReactEventPriorities';
import noop from 'shared/noop';
type ReactDOMInternals = {
Events: [any, any, any, any, any, any],
d : HostDispatcher,
p : EventPriority,
findDOMNode:
| null
| ((
componentOrElement: React$Component<any, any>,
) => null | Element | Text),
};
const DefaultDispatcher: HostDispatcher = {
f : noop,
r : noop,
D : noop,
C : noop,
L : noop,
m : noop,
X : noop,
S : noop,
M : noop,
};
const Internals: ReactDOMInternals = {
Events: (null: any),
d : DefaultDispatcher,
p : NoEventPriority,
findDOMNode: null,
};
export default Internals;