UNPKG

@cafebazaar/emrooz

Version:

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

7 lines (6 loc) 293 B
/** * Credits to https://github.com/farhadi/JalaliJSCalendar */ import { TupleDate } from "../types"; export declare function toGregorian(j_y: any, j_m: any, j_d: any): TupleDate; export declare function toJalali(g_y: string | number, g_m: string | number, g_d: string | number): TupleDate;