UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

21 lines (20 loc) 867 B
/** * DevExtreme (cjs/ui/scheduler/dataStructures.js) * Version: 21.1.4 * Build date: Mon Jun 21 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.AppointmentTooltipInfo = void 0; var AppointmentTooltipInfo = function(appointment) { var targetedAppointment = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : void 0; var color = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : []; var settings = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : []; this.appointment = appointment; this.targetedAppointment = targetedAppointment; this.color = color; this.settings = settings }; exports.AppointmentTooltipInfo = AppointmentTooltipInfo;