Skip to main content
Very Popular
Latest
type alias FormatDistanceFn
import { type FormatDistanceFn } from "https://deno.land/x/date_fns@v2.22.1/locale/types.ts";
definition: (
token:
| "lessThanXSeconds"
| "xSeconds"
| "halfAMinute"
| "lessThanXMinutes"
| "xMinutes"
| "aboutXHours"
| "xHours"
| "xDays"
| "aboutXMonths"
| "xMonths"
| "aboutXYears"
| "xYears"
| "overXYears"
| "almostXYears"
,
count: number,
options?: { addSuffix?: boolean; comparison?: -1 | 0 | 1; },
) => string