29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
/**
|
|
* SmartProxy main module exports
|
|
*/
|
|
|
|
// Export SmartProxy elements
|
|
export { SmartProxy } from './proxies/smart-proxy/index.js';
|
|
export { SharedRouteManager as RouteManager } from './core/routing/route-manager.js';
|
|
|
|
// Export smart-proxy models
|
|
export type { ISmartProxyOptions, IConnectionRecord, IRouteConfig, IRouteMatch, IRouteAction, IRouteTls, IRouteContext } from './proxies/smart-proxy/models/index.js';
|
|
export type { TSmartProxyCertProvisionObject } from './proxies/smart-proxy/models/interfaces.js';
|
|
export * from './proxies/smart-proxy/utils/index.js';
|
|
|
|
// Original: export * from './smartproxy/classes.pp.snihandler.js'
|
|
// Now we export from the new module
|
|
export { SniHandler } from './tls/sni/sni-handler.js';
|
|
|
|
// Core types and utilities
|
|
export * from './core/models/common-types.js';
|
|
|
|
// Export IAcmeOptions from one place only
|
|
export type { IAcmeOptions } from './proxies/smart-proxy/models/interfaces.js';
|
|
|
|
// Modular exports for new architecture
|
|
export * as tls from './tls/index.js';
|
|
export * as routing from './routing/index.js';
|
|
export * as detection from './detection/index.js';
|
|
export * as protocols from './protocols/index.js';
|