Rocky_Mountain_Vending/.pnpm-store/v10/files/68/344df1d339958268f62a73d21b2068935de2477f1de221ceb26caf48426108af304a24ec5c99f79700563778ef6a623618ba9bf5f07cdb9acf8e47c2981024
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

27 lines
678 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link isThursday} function options.
*/
export interface IsThursdayOptions extends ContextOptions<Date> {}
/**
* @name isThursday
* @category Weekday Helpers
* @summary Is the given date Thursday?
*
* @description
* Is the given date Thursday?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is Thursday
*
* @example
* // Is 25 September 2014 Thursday?
* const result = isThursday(new Date(2014, 8, 25))
* //=> true
*/
export declare function isThursday(
date: DateArg<Date> & {},
options?: IsThursdayOptions | undefined,
): boolean;