Files
verify/frontend/node_modules/next/dist/server/app-render/strip-flight-headers.d.ts
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

9 lines
276 B
TypeScript

/// <reference types="node" />
import type { IncomingHttpHeaders } from 'node:http';
/**
* Removes the flight headers from the request.
*
* @param req the request to strip the headers from
*/
export declare function stripFlightHeaders(headers: IncomingHttpHeaders): void;