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

ISOFormatOptions

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

The ISO format function options. Used to build function options.

interface ISOFormatOptions {
format?: ISOStringFormat;
representation?: ISOStringRepresentation;
}

§Properties

§

The format to use: basic with minimal number of separators or extended with separators added to enhance human readability

§

The date representation - what component to format: date, time
or both (complete)