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/cloudasset:v1.ts";

A time window specified by its start_time and end_time.

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

§Properties

§
endTime?: Date
[src]

End time of the time window (inclusive). If not specified, the current timestamp is used instead.

§
startTime?: Date
[src]

Start time of the time window (exclusive).