MCPcopy
hub / github.com/iptv-org/iptv / ProxyParserResult

Interface ProxyParserResult

scripts/core/proxyParser.ts:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { URL } from 'node:url'
2
3interface ProxyParserResult {
4 protocol: string | null
5 auth?: {
6 username?: string
7 password?: string
8 }
9 host: string
10 port: number | null
11}
12
13export class ProxyParser {
14 parse(_url: string): ProxyParserResult {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected