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

TimestampRange

import type { TimestampRange } from "https://googleapis.deno.dev/v1/jobs:v4.ts";

Message representing a period of time between two timestamps.

interface TimestampRange {
endTime?: Date;
startTime?: Date;
}

§Properties

§
endTime?: Date
[src]

End of the period (exclusive).

§
startTime?: Date
[src]

Begin of the period (inclusive).