first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,32 @@
import { IDateGridStrings, IDateFormatting, ICalendarStrings } from './dateFormatting.types';
/**
* Format date to a day string representation
* @param date - input date to format
*/
export declare const formatDay: (date: Date) => string;
/**
* Format date to a month-day-year string
* @param date - input date to format
* @param strings - localized strings
*/
export declare const formatMonthDayYear: (date: Date, strings: IDateGridStrings) => string;
/**
* Format date to a month-year string
* @param date - input date to format
* @param strings - localized strings
*/
export declare const formatMonthYear: (date: Date, strings: IDateGridStrings) => string;
/**
* Format date to a month string
* @param date - input date to format
* @param strings - localized strings
*/
export declare const formatMonth: (date: Date, strings: IDateGridStrings) => string;
/**
* Format date to a year string representation
* @param date - input date to format
*/
export declare const formatYear: (date: Date) => string;
export declare const DEFAULT_DATE_GRID_STRINGS: IDateGridStrings;
export declare const DEFAULT_DATE_FORMATTING: IDateFormatting;
export declare const DEFAULT_CALENDAR_STRINGS: ICalendarStrings;