UNPKG

@hanivanrizky/nestjs-html-parser

Version:

⚠️ ARCHIVED - This package is no longer maintained. Please migrate to @hanivanrizky/nestjs-xpath-parser (https://github.com/Hanivan/nestjs-xpath-parser)

19 lines (18 loc) 385 B
export interface ProxyConfig { /** * Proxy server URL (e.g., 'http://proxy.example.com:8080') */ url: string; /** * Type of proxy server */ type?: 'http' | 'https' | 'socks4' | 'socks5'; /** * Username for proxy authentication */ username?: string; /** * Password for proxy authentication */ password?: string; }