| 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 | import type {ReactComponentInfo} from 'shared/ReactTypes'; |
| 12 | |
| 13 | export * from 'react-flight-server-fb/src/server/ReactFlightServerConfigFBBundler'; |
| 14 | export * from 'react-flight-server-fb/src/server/ReactFlightServerConfigDOMFB'; |
| 15 | |
| 16 | export const supportsRequestStorage = false; |
| 17 | export const requestStorage: AsyncLocalStorage<Request | void> = null as any; |
| 18 | |
| 19 | export const supportsComponentStorage = false; |
| 20 | export const componentStorage: AsyncLocalStorage<ReactComponentInfo | void> = |
| 21 | null as any; |
| 22 | |
| 23 | export * from '../ReactFlightServerConfigDebugNoop'; |
| 24 | |
| 25 | export * from '../ReactFlightStackConfigV8'; |
| 26 | export * from '../ReactServerConsoleConfigServer'; |