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

DateRange

import type { DateRange } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

A date range.

interface DateRange {
endDate?: Date;
startDate?: Date;
}

§Properties

§
endDate?: Date
[src]

The upper bound of the date range, inclusive. Must specify a positive value for year, month, and day.

§
startDate?: Date
[src]

The lower bound of the date range, inclusive. Must specify a positive value for year, month, and day.