UNPKG

ng2-date-picker

Version:

[![Build Status](https://travis-ci.org/vlio20/angular-datepicker.svg?branch=master)](https://travis-ci.org/vlio20/angular-datepicker) [![Backers on Open Collective](https://opencollective.com/angular-datepicker/backers/badge.svg)](#backers) [![Sponsor

23 lines (22 loc) 742 B
import { Moment } from 'moment/moment'; import { ICalendar, ICalendarInternal } from '../common/models/calendar.model'; import { ECalendarValue } from '../common/types/calendar-value-enum'; export interface IConfig { hours12Format?: string; hours24Format?: string; maxTime?: Moment; meridiemFormat?: string; minTime?: Moment; minutesFormat?: string; minutesInterval?: number; secondsFormat?: string; secondsInterval?: number; showSeconds?: boolean; showTwentyFourHours?: boolean; timeSeparator?: string; returnedValueType?: ECalendarValue; } export interface ITimeSelectConfig extends IConfig, ICalendar { } export interface ITimeSelectConfigInternal extends IConfig, ICalendarInternal { }