UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

61 lines (60 loc) 2.03 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebExporterEventDetailDescription = /*@__PURE__*/ (() => { class WebExporterEventDetailDescription extends Description { constructor() { super(); this.f = null; this.h = null; this.j = null; this.m = false; } get_type() { return "WebExporterEventDetail"; } get type() { return this.get_type(); } get exporter() { return this.f; } set exporter(a) { this.f = a; this.e("Exporter"); } get options() { return this.h; } set options(a) { this.h = a; this.e("Options"); } get grid() { return this.j; } set grid(a) { this.j = a; this.e("Grid"); } get cancel() { return this.m; } set cancel(a) { this.m = a; this.e("Cancel"); } } WebExporterEventDetailDescription.$t = markType(WebExporterEventDetailDescription, 'WebExporterEventDetailDescription', Description.$); WebExporterEventDetailDescription.__marshalByValue = true; WebExporterEventDetailDescription.__marshalByValueAlias = "ExporterEventDetail"; return WebExporterEventDetailDescription; })();