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

HistoryKey

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

Key defines all the dimensions that identify this record as unique.

interface HistoryKey {
formFactor?:
| "ALL_FORM_FACTORS"
| "PHONE"
| "DESKTOP"
| "TABLET";
origin?: string;
url?: string;
}

§Properties

§
formFactor?: "ALL_FORM_FACTORS" | "PHONE" | "DESKTOP" | "TABLET"
[src]

The form factor is the device class that all users used to access the site for this record. If the form factor is unspecified, then aggregated data over all form factors will be returned.

§
origin?: string
[src]

Origin specifies the origin that this record is for. Note: When specifying an origin, data for loads under this origin over all pages are aggregated into origin level user experience data.

§
url?: string
[src]

Url specifies a specific url that this record is for. This url should be normalized, following the normalization actions taken in the request to increase the chances of successful lookup. Note: When specifying a "url" only data for that specific url will be aggregated.