igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
48 lines (47 loc) • 1.9 kB
JavaScript
/*
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 { __extends } from "tslib";
import { RenderingMessage } from "./RenderingMessage";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
var TemplateChangedMessage = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TemplateChangedMessage, _super);
function TemplateChangedMessage() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.f = null;
_this.h = null;
return _this;
}
Object.defineProperty(TemplateChangedMessage.prototype, "g", {
get: function () {
return this.f;
},
set: function (a) {
this.f = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(TemplateChangedMessage.prototype, "i", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
},
enumerable: false,
configurable: true
});
TemplateChangedMessage.prototype.toString = function () {
return "TemplateChangedMessage[" + this.g.toString() + ", " + this.i.toString() + "]";
};
TemplateChangedMessage.$t = markType(TemplateChangedMessage, 'TemplateChangedMessage', RenderingMessage.$);
return TemplateChangedMessage;
}(RenderingMessage));
export { TemplateChangedMessage };