File: /var/www/design.system/node_modules/msw/lib/core/passthrough.d.ts
import { e as StrictResponse } from './HttpResponse-Cy7ytzUn.js';
import '@mswjs/interceptors';
import './utils/internal/isIterable.js';
import './typeUtils.js';
/**
* Performs the intercepted request as-is.
*
* This stops request handler lookup so no other handlers
* can affect this request past this point.
* Unlike `bypass()`, this will not trigger an additional request.
*
* @example
* http.get('/resource', () => {
* return passthrough()
* })
*
* @see {@link https://mswjs.io/docs/api/passthrough `passthrough()` API reference}
*/
declare function passthrough(): StrictResponse<any>;
export { passthrough };