UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

45 lines (44 loc) 1.57 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { InteractionMessage } from "./InteractionMessage"; import { markType } from "igniteui-react-core"; /** * @hidden */ export let ViewPropertyChangedMessage = /*@__PURE__*/ (() => { class ViewPropertyChangedMessage extends InteractionMessage { constructor() { super(...arguments); this.f = null; this.c = null; this.b = null; } get g() { return this.f; } set g(a) { this.f = a; } get e() { return this.c; } set e(a) { this.c = a; } get d() { return this.b; } set d(a) { this.b = a; } toString() { return "ViewPropertyChangedMessage[" + this.g.toString() + ", " + this.e.toString() + ", " + this.d.toString() + "]"; } } ViewPropertyChangedMessage.$t = /*@__PURE__*/ markType(ViewPropertyChangedMessage, 'ViewPropertyChangedMessage', InteractionMessage.$); return ViewPropertyChangedMessage; })();