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

TimeWindow

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

Represents an arbitrary window of time.

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

§Properties

§
endTime?: Date
[src]

Required. The end time of the time window provided in RFC 3339 format. The end time should take place after the start time. Example: "2024-01-02T12:04:06-06:00"

§
startTime?: Date
[src]

Required. The start time of the time window provided in RFC 3339 format. Example: "2024-01-01T12:04:06-04:00"