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

UrlNormalization

import type { UrlNormalization } from "https://googleapis.deno.dev/v1/chromeuxreport:v1.ts";

Object representing the normalization actions taken to normalize a url to achieve a higher chance of successful lookup. These are simple automated changes that are taken when looking up the provided url_patten would be known to fail. Complex actions like following redirects are not handled.

interface UrlNormalization {
normalizedUrl?: string;
originalUrl?: string;
}

§Properties

§
normalizedUrl?: string
[src]

The URL after any normalization actions. This is a valid user experience URL that could reasonably be looked up.

§
originalUrl?: string
[src]

The original requested URL prior to any normalization actions.