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

CollectionPeriod

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

The collection period is a date range which includes the first and last day.

interface CollectionPeriod {
firstDate?: Date;
lastDate?: Date;
}

§Properties

§
firstDate?: Date
[src]

The first day in the collection period, inclusive.

§
lastDate?: Date
[src]

The last day in the collection period, inclusive.