UNPKG

394 BTypeScriptView Raw
1import { DateLib, type DateLibOptions } from "../classes/DateLib.js";
2/**
3 * Format the weekday name to be displayed in the weekdays header.
4 *
5 * @defaultValue `cccccc` (e.g. "Mo" for Monday)
6 * @group Formatters
7 * @see https://daypicker.dev/docs/translation#custom-formatters
8 */
9export declare function formatWeekdayName(weekday: Date, options?: DateLibOptions, dateLib?: DateLib): string;