UNPKG

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