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

IntervalConfig

interface IntervalConfig {
fields?:
| "year"
| "month"
| "day"
| "hour"
| "minute"
| "second"
| "year to month"
| "day to hour"
| "day to minute"
| "day to second"
| "hour to minute"
| "hour to second"
| "minute to second";
precision?: Precision;
}

§Properties

§
fields?: "year" | "month" | "day" | "hour" | "minute" | "second" | "year to month" | "day to hour" | "day to minute" | "day to second" | "hour to minute" | "hour to second" | "minute to second"
[src]
§
precision?: Precision
[src]