Uri.Credentials
import type { Uri } from "https://raw.githubusercontent.com/i-xi-dev/url.es/3.1.23/mod.ts";
const { Credentials } = Uri;
A userinfo
consisting of username
and password
.
type Credentials = {
userName: string;
password: string;
};