/** * Node-only entry of `@dowser/http-testing`. * * Pulls `@mswjs/interceptors` (which top-level imports `node:http` and * `node:stream`). Use this from Jest / Vitest tests running under Node. * * Don't import this from React Native code — MSW does not survive * module-init under Hermes (missing `TextEncoder`, `URLSearchParams`, etc.) * even with the browser preset. The on-device manual-flush API is mounted * in `@dowser/react-native` (`installHttpController` / `installHttpTesting`) * which monkey-patches `fetch`/`XHR` directly without MSW. */ export { installHttpController } from './http-controller.js'; export type { HttpController, HttpExpectation, HttpMatcher, } from './http-controller.js'; //# sourceMappingURL=node.d.ts.map