Files
klz-cables.com/.pnpm-store/v10/files/bd/98fb20ed36d287b9d0ac6d6a4cafd6691734e7a995cd4ceb24bebdeb5d5f663aab974e16faad9528dd8f5627564e51ffe0b0378e1c21db15f6aa07c77b791a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

30 lines
771 B
Plaintext

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;