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

Uri.Credentials

import type { Uri } from "https://raw.githubusercontent.com/i-xi-dev/url.es/3.1.21/mod.ts"; 

const { Credentials } = Uri;

A userinfo consisting of username and password.

type Credentials = {
userName: string;
password: string;
}
;

§Type

§
{
userName: string;
password: string;
}
[src]