UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

76 lines (75 loc) 3.11 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ var WebGridToolbarExportEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebGridToolbarExportEventArgsDetailDescription, _super); function WebGridToolbarExportEventArgsDetailDescription() { var _this = _super.call(this) || this; _this.q = null; _this.m = null; _this.o = null; _this.t = false; return _this; } WebGridToolbarExportEventArgsDetailDescription.prototype.get_type = function () { return "WebGridToolbarExportEventArgsDetail"; }; Object.defineProperty(WebGridToolbarExportEventArgsDetailDescription.prototype, "grid", { get: function () { return this.q; }, set: function (a) { this.q = a; this.g("Grid"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridToolbarExportEventArgsDetailDescription.prototype, "exporter", { get: function () { return this.m; }, set: function (a) { this.m = a; this.g("Exporter"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridToolbarExportEventArgsDetailDescription.prototype, "options", { get: function () { return this.o; }, set: function (a) { this.o = a; this.g("Options"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridToolbarExportEventArgsDetailDescription.prototype, "cancel", { get: function () { return this.t; }, set: function (a) { this.t = a; this.g("Cancel"); }, enumerable: false, configurable: true }); WebGridToolbarExportEventArgsDetailDescription.$t = markType(WebGridToolbarExportEventArgsDetailDescription, 'WebGridToolbarExportEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebGridToolbarExportEventArgsDetailDescription.__marshalByValue1 = true; WebGridToolbarExportEventArgsDetailDescription.__marshalByValueAlias1 = "GridToolbarExportEventArgsDetail"; return WebGridToolbarExportEventArgsDetailDescription; }(WebBaseEventArgsDetailDescription)); export { WebGridToolbarExportEventArgsDetailDescription };