UNPKG

@push.rocks/smartproxy

Version:

A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.

16 lines (15 loc) 549 B
import { Port80HandlerEvents } from '../models/common-types.js'; export { Port80HandlerEvents }; /** * @deprecated Use SmartCertManager instead */ export interface IPort80HandlerSubscribers { onCertificateIssued?: (data: any) => void; onCertificateRenewed?: (data: any) => void; onCertificateFailed?: (data: any) => void; onCertificateExpiring?: (data: any) => void; } /** * @deprecated Use SmartCertManager instead */ export declare function subscribeToPort80Handler(handler: any, subscribers: IPort80HandlerSubscribers): void;