18 lines
880 B
TypeScript
18 lines
880 B
TypeScript
/**
|
|
* Proxy implementations module
|
|
*/
|
|
|
|
// Export NetworkProxy with selective imports to avoid RouteManager ambiguity
|
|
export { NetworkProxy, CertificateManager, ConnectionPool, RequestHandler, WebSocketHandler } from './network-proxy/index.js';
|
|
export type { IMetricsTracker, MetricsTracker } from './network-proxy/index.js';
|
|
export * from './network-proxy/models/index.js';
|
|
|
|
// Export SmartProxy with selective imports to avoid RouteManager ambiguity
|
|
export { SmartProxy, ConnectionManager, SecurityManager, TimeoutManager, TlsManager, NetworkProxyBridge, RouteConnectionHandler } from './smart-proxy/index.js';
|
|
export { RouteManager as SmartProxyRouteManager } from './smart-proxy/route-manager.js';
|
|
export * from './smart-proxy/utils/index.js';
|
|
export * from './smart-proxy/models/index.js';
|
|
|
|
// Export NFTables proxy (no conflicts)
|
|
export * from './nftables-proxy/index.js';
|