UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

20 lines (19 loc) 803 B
/** * DevExtreme (esm/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/ */ export class AppointmentTooltipInfo { constructor(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 } }