UNPKG

@cafebazaar/emrooz

Version:

Emrooz is a multilingual calendar built for Vue3. It also supports both Shamsi (Persian / Jalali) and Gregorian (English) calendars.

14 lines (13 loc) 539 B
import { DatePickerSelectInput, GeneralDateUtil } from '../../shared/types'; export declare type DatePickerDate = GeneralDateUtil; export interface DatePickerLanguageStrings { readonly monthNames: string[]; readonly dayHeaderNames: string[]; readonly action: string; } export interface DatePickerStrings { readonly fa: DatePickerLanguageStrings; readonly en: DatePickerLanguageStrings; } export declare type SelectDate = () => void; export declare type SetDatePickerSelectInput = (date: DatePickerSelectInput) => void;