UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

61 lines (60 loc) 2.13 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 WebSortingEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebSortingEventArgsDetailDescription extends Description { constructor() { super(); this.l = null; this.k = null; this.r = null; this.p = false; } get_type() { return "WebSortingEventArgsDetail"; } get type() { return this.get_type(); } get sortingExpressions() { return this.l; } set sortingExpressions(a) { this.l = a; this.j("SortingExpressions"); } get groupingExpressions() { return this.k; } set groupingExpressions(a) { this.k = a; this.j("GroupingExpressions"); } get owner() { return this.r; } set owner(a) { this.r = a; this.j("Owner"); } get cancel() { return this.p; } set cancel(a) { this.p = a; this.j("Cancel"); } } WebSortingEventArgsDetailDescription.$t = markType(WebSortingEventArgsDetailDescription, 'WebSortingEventArgsDetailDescription', Description.$); WebSortingEventArgsDetailDescription.__marshalByValue = true; WebSortingEventArgsDetailDescription.__marshalByValueAlias = "SortingEventArgsDetail"; return WebSortingEventArgsDetailDescription; })();