@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and
24 lines (23 loc) • 739 B
TypeScript
/**
* Enhanced proxy-aware fetch implementation for AI SDK providers
* Supports HTTP/HTTPS, SOCKS4/5, authentication, and NO_PROXY bypass
* Lightweight implementation extracted from research of major proxy packages
*/
/**
* Create a proxy-aware fetch function with enhanced capabilities
* Supports HTTP/HTTPS, SOCKS4/5, authentication, and NO_PROXY bypass
*/
export declare function createProxyFetch(): typeof fetch;
/**
* Get enhanced proxy status information
*/
export declare function getProxyStatus(): {
enabled: boolean;
httpProxy: string | null;
httpsProxy: string | null;
allProxy: string | null;
socksProxy: string | null;
noProxy: string | null;
method: string;
capabilities: string[];
};