UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

77 lines (76 loc) 2.42 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 WebPivotKeysDescription = /*@__PURE__*/ (() => { class WebPivotKeysDescription extends Description { constructor() { super(); this.n = null; this.q = null; this.m = null; this.p = null; this.o = null; this.r = null; } get_type() { return "WebPivotKeys"; } get type() { return this.get_type(); } get children() { return this.n; } set children(a) { this.n = a; this.j("Children"); } get records() { return this.q; } set records(a) { this.q = a; this.j("Records"); } get aggregations() { return this.m; } set aggregations(a) { this.m = a; this.j("Aggregations"); } get level() { return this.p; } set level(a) { this.p = a; this.j("Level"); } get columnDimensionSeparator() { return this.o; } set columnDimensionSeparator(a) { this.o = a; this.j("ColumnDimensionSeparator"); } get rowDimensionSeparator() { return this.r; } set rowDimensionSeparator(a) { this.r = a; this.j("RowDimensionSeparator"); } } WebPivotKeysDescription.$t = markType(WebPivotKeysDescription, 'WebPivotKeysDescription', Description.$); WebPivotKeysDescription.__marshalByValue = true; WebPivotKeysDescription.__marshalByValueAlias = "PivotKeys"; return WebPivotKeysDescription; })();