UNPKG

ngx-jalali-date-picker

Version:

This is a configurable date-picker build for Angular applications. Supports latest (Angular 18) version. This date-picker is based on ng2-date-piker and ngx-jalali-date-picker date pickers.

13 lines (12 loc) 307 B
import { Moment } from 'jalali-moment'; import { SingleCalendarValue } from '../types/single-calendar-value'; export interface ICalendar { locale?: string; min?: SingleCalendarValue; max?: Moment; } export interface ICalendarInternal { locale?: string; min?: Moment; max?: Moment; }