1. /**
    
  2.  * Copyright (c) Meta Platforms, Inc. and affiliates.
    
  3.  *
    
  4.  * This source code is licensed under the MIT license found in the
    
  5.  * LICENSE file in the root directory of this source tree.
    
  6.  *
    
  7.  * @flow
    
  8.  */
    
  9. 
    
  10. import type {HostDispatcher} from './shared/ReactDOMTypes';
    
  11. 
    
  12. type InternalsType = {
    
  13.   usingClientEntryPoint: boolean,
    
  14.   Events: [any, any, any, any, any, any],
    
  15.   Dispatcher: {
    
  16.     current: null | HostDispatcher,
    
  17.   },
    
  18. };
    
  19. 
    
  20. const Internals: InternalsType = ({
    
  21.   usingClientEntryPoint: false,
    
  22.   Events: null,
    
  23.   Dispatcher: {
    
  24.     current: null,
    
  25.   },
    
  26. }: any);
    
  27. 
    
  28. export default Internals;