11 lines
508 B
TypeScript
11 lines
508 B
TypeScript
/**
|
|
* 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';
|