Deno.BasicAuth

UNSTABLE: New API, yet to be vetted.

Basic authentication credentials to be used with a Deno.Proxy server when specifying Deno.CreateHttpClientOptions.

interface BasicAuth {
password: string;
username: string;
}

§Properties

§
password: string
[src]

The password to be used against the proxy server.

§
username: string
[src]

The username to be used against the proxy server.