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

A structure that defines the time range that you want to retrieve results from.

interface TimeRange {
After: number;
Before?: number | null;
}

§Properties

§
After: number
[src]

The beginning of the time range to retrieve performance events from.

§
Before?: number | null
[src]

The end of the time range to retrieve performance events from. If you omit this, the time range extends to the time that this operation is performed.