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) 438 B
/** * Custom error classes for better error handling */ export declare class NftBaseError extends Error { constructor(message: string); } export declare class NftValidationError extends NftBaseError { constructor(message: string); } export declare class NftExecutionError extends NftBaseError { constructor(message: string); } export declare class NftResourceError extends NftBaseError { constructor(message: string); }