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/gmailpostmastertools:v2.ts";

A single date range defined by a start and end date.

interface DateRange {
end?: Date;
start?: Date;
}

§Properties

§
end?: Date
[src]

Required. The inclusive end date of the date range.

§
start?: Date
[src]

Required. The inclusive start date of the date range.