UNPKG

igniteui-react-core

Version:
34 lines (33 loc) 1.43 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 { __extends } from "tslib"; import { EventArgs, markType } from "./type"; /** * @hidden */ var ErrorMessageDisplayingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ErrorMessageDisplayingEventArgs, _super); function ErrorMessageDisplayingEventArgs(a) { var _this = _super.call(this) || this; _this.b = null; _this.errorMessage = a; return _this; } Object.defineProperty(ErrorMessageDisplayingEventArgs.prototype, "errorMessage", { get: function () { return this.b; }, set: function (a) { this.b = a; }, enumerable: false, configurable: true }); ErrorMessageDisplayingEventArgs.$t = markType(ErrorMessageDisplayingEventArgs, 'ErrorMessageDisplayingEventArgs', EventArgs.$); return ErrorMessageDisplayingEventArgs; }(EventArgs)); export { ErrorMessageDisplayingEventArgs };