ng2-date-picker-pda-forked
Version:
18 lines (16 loc) • 466 B
text/typescript
import {Moment} from 'moment/moment';
import {ICalendar} from '../common/models/calendar.model';
export interface ITimeSelectConfig extends ICalendar {
hours12Format?: string;
hours24Format?: string;
maxTime?: Moment;
meridiemFormat?: string;
minTime?: Moment;
minutesFormat?: string;
minutesInterval?: number;
secondsFormat?: string;
secondsInterval?: number;
showSeconds?: boolean;
showTwentyFourHours?: boolean;
timeSeparator?: string;
}