import type {
PrefetchDNSOptions,
PreconnectOptions,
PreloadOptions,
PreinitOptions,
} from 'react-dom/src/ReactDOMDispatcher';
import ReactDOMSharedInternals from 'shared/ReactDOMSharedInternals';
const ReactDOMCurrentDispatcher = ReactDOMSharedInternals.Dispatcher;
import {ReactDOMFlightServerDispatcher} from './ReactDOMFlightServerHostDispatcher';
export function prepareHostDispatcher(): void {
ReactDOMCurrentDispatcher.current = ReactDOMFlightServerDispatcher;
}
export const isPrimaryRenderer = true;
export type HintModel =
| string
| [
string,
PrefetchDNSOptions | PreconnectOptions | PreloadOptions | PreinitOptions,
];
export type Hints = Set<string>;
export function createHints(): Hints {
return new Set();
}