UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

61 lines (60 loc) 2.07 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 WebExporterEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebExporterEventArgsDetailDescription extends Description { constructor() { super(); this.k = null; this.m = null; this.o = null; this.r = false; } get_type() { return "WebExporterEventArgsDetail"; } get type() { return this.get_type(); } get exporter() { return this.k; } set exporter(a) { this.k = a; this.j("Exporter"); } get options() { return this.m; } set options(a) { this.m = a; this.j("Options"); } get grid() { return this.o; } set grid(a) { this.o = a; this.j("Grid"); } get cancel() { return this.r; } set cancel(a) { this.r = a; this.j("Cancel"); } } WebExporterEventArgsDetailDescription.$t = markType(WebExporterEventArgsDetailDescription, 'WebExporterEventArgsDetailDescription', Description.$); WebExporterEventArgsDetailDescription.__marshalByValue = true; WebExporterEventArgsDetailDescription.__marshalByValueAlias = "ExporterEventArgsDetail"; return WebExporterEventArgsDetailDescription; })();