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/shield.ts?docs=full";

The time range.

interface TimeRange {
FromInclusive?: Date | number | null;
ToExclusive?: Date | number | null;
}

§Properties

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

The start time, in Unix time in seconds.

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

The end time, in Unix time in seconds.