Rocky_Mountain_Vending/.pnpm-store/v10/files/bf/65d43ebf18a9190d9ea97357a254837a68d9b502f3ffc3cba874d2bdcc0dd0dd5c91054635e2ff44d223c5ca94bf1c062c4c5c8d1bb39ba915751b928c37dc
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
798 B
Text

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