import { IncomingMessage } from "node:http"; import { Http2ServerRequest } from "node:http2"; //#region index.d.ts /** Reconstruct the original URL from a HTTP/1 or HTTP/2 request. */ declare function urlFromReq(req: IncomingMessage | Http2ServerRequest): URL; //#endregion export { urlFromReq };