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 {Request} from 'react-server/src/ReactFlightServer';
    
  11. 
    
  12. export * from '../ReactFlightServerConfigBundlerCustom';
    
  13. 
    
  14. export type Hints = any;
    
  15. export type HintCode = any;
    
  16. // eslint-disable-next-line no-unused-vars
    
  17. export type HintModel<T: any> = any;
    
  18. 
    
  19. export const isPrimaryRenderer = false;
    
  20. 
    
  21. export const prepareHostDispatcher = () => {};
    
  22. 
    
  23. export const supportsRequestStorage = false;
    
  24. export const requestStorage: AsyncLocalStorage<Request> = (null: any);
    
  25. 
    
  26. export function createHints(): any {
    
  27.   return null;
    
  28. }