UNPKG

@vurilo/nepali-date-picker

Version:

Nepali Calendars, date and time pickers based on Mantine components

11 lines (10 loc) 412 B
import { DatePickerType, DatePickerValue } from '../types'; interface GetFormattedDate<Type extends DatePickerType = 'default'> { type: Type; date: DatePickerValue<Type>; locale: string; format: string; labelSeparator: string; } export declare function getFormattedDate<Type extends DatePickerType>({ type, date, locale, format, labelSeparator, }: GetFormattedDate<Type>): string; export {};