smartproxy/ts/index.ts

22 lines
833 B
TypeScript
Raw Normal View History

2025-05-09 17:00:27 +00:00
/**
* SmartProxy main module exports
*/
// Legacy exports (to maintain backward compatibility)
export * from './nfttablesproxy/classes.nftablesproxy.js';
export * from './networkproxy/index.js';
export * from './port80handler/classes.port80handler.js';
export * from './redirect/classes.redirect.js';
export * from './smartproxy/classes.smartproxy.js';
2025-05-09 17:00:27 +00:00
// 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';
2025-05-09 17:00:27 +00:00
// Core types and utilities
export * from './core/models/common-types.js';
2025-05-09 17:00:27 +00:00
// 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';