UNPKG

ng19-date-picker

Version:

https://github.com/vlio20/angular-datepicker

11 lines (10 loc) 262 B
import { Dayjs } from 'dayjs'; import { SingleCalendarValue } from '../types/single-calendar-value'; export interface ICalendar { min?: SingleCalendarValue; max?: Dayjs | string; } export interface ICalendarInternal { min?: Dayjs; max?: Dayjs; }