33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
/**
|
|
* SmartProxy main module exports
|
|
*/
|
|
|
|
// Legacy exports (to maintain backward compatibility)
|
|
export * from './nfttablesproxy/classes.nftablesproxy.js';
|
|
export * from './networkproxy/index.js';
|
|
// Export port80handler elements selectively to avoid conflicts
|
|
export {
|
|
Port80Handler,
|
|
default as Port80HandlerDefault,
|
|
HttpError,
|
|
ServerError,
|
|
CertificateError
|
|
} from './port80handler/classes.port80handler.js';
|
|
// Use re-export to control the names
|
|
export { Port80HandlerEvents } from './certificate/events/certificate-events.js';
|
|
|
|
export * from './redirect/classes.redirect.js';
|
|
export * from './smartproxy/classes.smartproxy.js';
|
|
// Original: export * from './smartproxy/classes.pp.snihandler.js'
|
|
// Now we export from the new module
|
|
export { SniHandler } from './tls/sni/sni-handler.js';
|
|
export * from './smartproxy/classes.pp.interfaces.js';
|
|
|
|
// Core types and utilities
|
|
export * from './core/models/common-types.js';
|
|
|
|
// Modular exports for new architecture
|
|
export * as forwarding from './forwarding/index.js';
|
|
export * as certificate from './certificate/index.js';
|
|
export * as tls from './tls/index.js';
|
|
export * as http from './http/index.js'; |