Files
smartproxy/ts/proxies/index.ts

14 lines
592 B
TypeScript
Raw Permalink Normal View History

2025-05-09 17:00:27 +00:00
/**
* Proxy implementations module
*/
// Export SmartProxy with selective imports to avoid conflicts
export { SmartProxy } from './smart-proxy/index.js';
export { SharedRouteManager as SmartProxyRouteManager } from '../core/routing/route-manager.js';
export * from './smart-proxy/utils/index.js';
// Export smart-proxy models except IAcmeOptions
export type { ISmartProxyOptions, IConnectionRecord, IRouteConfig, IRouteMatch, IRouteAction, IRouteTls, IRouteContext } from './smart-proxy/models/index.js';
// Export NFTables proxy (no conflicts)
2025-05-09 17:00:27 +00:00
export * from './nftables-proxy/index.js';