Rocky_Mountain_Vending/.pnpm-store/v10/files/31/9b30c7ce82afc3999e5490449abc700121931db8812eeff487bcf2f19633759c7377c8358fabb81d29b00e865b8fac5c43d90e39cd1691c4574a6ef0ff7f09
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

59 lines
2 KiB
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link closestTo} function options.
*/
export interface ClosestToOptions<DateType extends Date = Date>
extends ContextOptions<DateType> {}
/**
* The {@link closestTo} function result type. It resolves the proper data type.
* It uses the first argument date object type, starting from the date argument,
* then the start interval date, and finally the end interval date. If
* a context function is passed, it uses the context function return type.
*/
export type ClosestToResult<
DateToCompare extends DateArg<Date>,
DatesType extends DateArg<Date>[],
Options extends ClosestToOptions | undefined,
> =
Options extends ClosestToOptions<infer DateType extends Date>
? DateType
: DateToCompare extends Date
? DateToCompare
: DatesType extends DateArg<infer DateType>[]
? DateType
: Date;
/**
* @name closestTo
* @category Common Helpers
* @summary Return a date from the array closest to the given date.
*
* @description
* Return a date from the array closest to the given date.
*
* @typeParam DateToCompare - Date to compare argument type.
* @typeParam DatesType - Dates array argument type.
* @typeParam Options - Options type.
*
* @param dateToCompare - The date to compare with
* @param dates - The array to search
*
* @returns The date from the array closest to the given date or undefined if no valid value is given
*
* @example
* // Which date is closer to 6 September 2015: 1 January 2000 or 1 January 2030?
* const dateToCompare = new Date(2015, 8, 6)
* const result = closestTo(dateToCompare, [
* new Date(2000, 0, 1),
* new Date(2030, 0, 1)
* ])
* //=> Tue Jan 01 2030 00:00:00
*/
export declare function closestTo<
DateToCompare extends DateArg<Date>,
DatesType extends DateArg<Date>[],
Options extends ClosestToOptions | undefined = undefined,
>(
dateToCompare: DateToCompare,
dates: DatesType,
options?: Options | undefined,
): ClosestToResult<DateToCompare, DatesType, Options> | undefined;