Rocky_Mountain_Vending/.pnpm-store/v10/files/bd/98fb20ed36d287b9d0ac6d6a4cafd6691734e7a995cd4ceb24bebdeb5d5f663aab974e16faad9528dd8f5627564e51ffe0b0378e1c21db15f6aa07c77b791a
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

29 lines
771 B
Text

import type { ContextOptions } from "./types.js";
/**
* The {@link startOfToday} function options.
*/
export interface StartOfTodayOptions<DateType extends Date = Date>
extends ContextOptions<DateType> {}
/**
* @name startOfToday
* @category Day Helpers
* @summary Return the start of today.
* @pure false
*
* @description
* Return the start of today.
*
* @typeParam ContextDate - The `Date` type of the context function.
*
* @param options - An object with options
*
* @returns The start of today
*
* @example
* // If today is 6 October 2014:
* const result = startOfToday()
* //=> Mon Oct 6 2014 00:00:00
*/
export declare function startOfToday<ContextDate extends Date>(
options?: StartOfTodayOptions<ContextDate> | undefined,
): ContextDate;