first_commit

This commit is contained in:
2026-01-12 12:43:50 +01:00
parent c75b3e9563
commit 69e186a7f1
15289 changed files with 1616360 additions and 1944 deletions

27
GTA_P_V2/node_modules/date-fns/isMonday.d.ts generated vendored Normal file
View File

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