@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
10 lines (9 loc) • 471 B
TypeScript
/**
* HeaderScrubber — strips headers that could reveal the presence of a proxy.
*
* Removes forwarding headers (x-forwarded-for, via, x-real-ip, etc.) and any
* custom proxy-fingerprint headers, while preserving legitimate request
* headers like content-type and authorization.
*/
import type { CloakingPlugin, HeaderScrubberOptions } from "../../../types/index.js";
export declare function createHeaderScrubber(options?: HeaderScrubberOptions): CloakingPlugin;