UNPKG

@vurilo/nepali-date-picker

Version:

Nepali Calendars, date and time pickers based on Mantine components

10 lines (9 loc) 352 B
import React from 'react'; import type { DayOfWeek } from '../../../types'; interface GetWeekdaysNamesInput { locale: string; format?: string | ((date: Date) => React.ReactNode); firstDayOfWeek?: DayOfWeek; } export declare function getWeekdayNames({ locale, format, firstDayOfWeek, }: GetWeekdaysNamesInput): React.ReactNode[]; export {};