com.phloxui
Version:
PhloxUI Ng2+ Framework
11 lines (10 loc) • 520 B
TypeScript
import { ViewModel } from './ViewModel';
import { ICalendarEntryMapper } from '../component/editor/ICalendarEntryMapper';
export declare class CalendarViewModel extends ViewModel {
entryMappers: ICalendarEntryMapper[];
fromDateTimeField: string;
toDateTimeField: string;
titleField: string;
popoverTypeOption: any;
constructor(iconURL: string, label: string, fromDateTimeField: string, toDateTimeField: string, titleField: string, entryMappers: ICalendarEntryMapper[], popoverTypeOption: any);
}