Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProxyInfo

import type { ProxyInfo } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";

Configuration info for an HTTP proxy. For a direct proxy, set the host, port, and excluded_hosts fields. For a PAC script proxy, set the pac_uri field.

interface ProxyInfo {
excludedHosts?: string[];
host?: string;
pacUri?: string;
port?: number;
}

§Properties

§
excludedHosts?: string[]
[src]

For a direct proxy, the hosts for which the proxy is bypassed. The host names may contain wildcards such as *.example.com.

§
host?: string
[src]

The host of the direct proxy.

§
pacUri?: string
[src]

The URI of the PAC script used to configure the proxy.

§
port?: number
[src]

The port of the direct proxy.