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

NormalizedInterval

import type { NormalizedInterval } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";

A version of Interval that has both start and end resolved to Date.

interface NormalizedInterval <DateType extends Date = Date> {
end: DateType;
start: DateType;
}

§Type Parameters

§
DateType extends Date = Date
[src]

§Properties

§
end: DateType
[src]

The end of the interval.

§
start: DateType
[src]

The start of the interval.