UNPKG

antd-dayjs-jalali2

Version:

antd persian (Jalali, Khorshidi) Day.js calander

15 lines (10 loc) 270 B
import { PluginFunc, ConfigType } from 'dayjs'; declare const plugin: PluginFunc; export = plugin; type calendarType = 'jalali' | 'gregory'; declare module 'dayjs' { interface Dayjs { calendar(calendarType: calendarType): Dayjs; isJalali(): boolean; } }