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;
}UNSTABLE: New API, yet to be vetted.
Basic authentication credentials to be used with a Deno.Proxy
server when specifying Deno.CreateHttpClientOptions
.