UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 2.02 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ export let WebGroupingDoneEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebGroupingDoneEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.p = null; this.q = null; this.r = null; } get_type() { return "WebGroupingDoneEventArgsDetail"; } get expressions() { return this.p; } set expressions(a) { this.p = a; this.j("Expressions"); } get groupedColumns() { return this.q; } set groupedColumns(a) { this.q = a; this.j("GroupedColumns"); } get ungroupedColumns() { return this.r; } set ungroupedColumns(a) { this.r = a; this.j("UngroupedColumns"); } } WebGroupingDoneEventArgsDetailDescription.$t = markType(WebGroupingDoneEventArgsDetailDescription, 'WebGroupingDoneEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebGroupingDoneEventArgsDetailDescription.__marshalByValue1 = true; WebGroupingDoneEventArgsDetailDescription.__marshalByValueAlias1 = "GroupingDoneEventArgsDetail"; return WebGroupingDoneEventArgsDetailDescription; })();