UNPKG

@syncfusion/ej2-calendars

Version:

A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization.

29 lines (28 loc) 788 B
import { Component, Internationalization } from '@syncfusion/ej2-base'; import { CalendarType } from '../calendar/calendar'; import { InputObject } from '@syncfusion/ej2-inputs'; /** * Specifies mulitselct interfaces. * * @hidden */ export interface IMaskedDateTime extends Component<HTMLElement> { format?: string; maskPlaceholder: { [x: string]: Object; }; maskedDateValue: string; locale: string; inputElement: HTMLInputElement; inputWrapper: InputObject; strictMode: boolean; value: Date; updateInputValue(value?: string): void; dateTimeFormat: string; formatString: string; moduleName: string; cldrTimeFormat(): string; calendarMode: CalendarType; globalize: Internationalization; isFocused: boolean; }