@@ -13,17 +13,15 @@ import type {HostDispatcher} from './shared/ReactDOMTypes';
1313import { NoEventPriority } from 'react-reconciler/src/ReactEventPriorities' ;
1414
1515type InternalsType = {
16- usingClientEntryPoint : boolean ,
17- Events : [ any , any , any , any , any , any ] ,
18- ReactDOMCurrentDispatcher : {
19- current : HostDispatcher ,
20- } ,
16+ c /* usingClientEntryPoint */ : boolean ,
17+ E /* Events */ : [ any , any , any , any , any , any ] ,
18+ d /* ReactDOMCurrentDispatcher */ : HostDispatcher ,
2119 findDOMNode :
2220 | null
2321 | ( (
2422 componentOrElement : React$Component < any , any > ,
2523 ) => null | Element | Text ) ,
26- up /* currentUpdatePriority */ : EventPriority ,
24+ p /* currentUpdatePriority */ : EventPriority ,
2725} ;
2826
2927function noop ( ) { }
@@ -39,13 +37,11 @@ const DefaultDispatcher: HostDispatcher = {
3937} ;
4038
4139const Internals : InternalsType = {
42- usingClientEntryPoint : false ,
43- Events : ( null : any ) ,
44- ReactDOMCurrentDispatcher : {
45- current : DefaultDispatcher ,
46- } ,
40+ c /* usingClientEntryPoint */ : false ,
41+ E /* Events */ : ( null : any ) ,
42+ d /* ReactDOMCurrentDispatcher */ : DefaultDispatcher ,
4743 findDOMNode : null ,
48- up /* currentUpdatePriority */ : NoEventPriority ,
44+ p /* currentUpdatePriority */ : NoEventPriority ,
4945} ;
5046
5147export default Internals ;
0 commit comments