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

TimeRange

import type { TimeRange } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Information about a time range.

interface TimeRange {
end?: Date | number | null;
start?: Date | number | null;
}

§Properties

§
end?: Date | number | null
[src]

The end time of the time range.

Note: Specify null to leave the end time open-ended.

§
start?: Date | number | null
[src]

The start time of the time range.

Note: Specify null to leave the start time open-ended.