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

ParsedURL

interface ParsedURL {
auth?: string;
hash: string;
host?: string;
pathname: string;
protocol?: string;
search: string;
}

§Properties

§
auth?: string
[src]
§
hash: string
[src]
§
host?: string
[src]
§
pathname: string
[src]
§
protocol?: string
[src]