UNPKG

angular-weblineindia-date-picker

Version:

Date Picker component built in AngularJS to select date and time. Supports Angular 9 version.

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