UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

53 lines (52 loc) 1.71 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 { Base, markType } from "igniteui-react-core"; import { WCNativeHelper } from "igniteui-react"; import { GroupByRecord } from "./GroupByRecord"; /** * @hidden */ export let GroupByResult = /*@__PURE__*/ (() => { class GroupByResult extends Base { constructor() { super(...arguments); this.c = new WCNativeHelper(); this.e = null; } get d() { return this.c; } get nativeElement() { return this.e; } set nativeElement(a) { this.e = a; this.c.o = this.e; } setNativeElement(a) { this.nativeElement = a; } get a() { let ret_ = this.d.n("data"); return ret_; } set a(a) { let value_ = a; this.d.w("data", value_); } get b() { let ret_ = this.d.m("metadata", (a) => new GroupByRecord()); return ret_; } set b(a) { let value_ = a; this.d.w("metadata", value_); } } GroupByResult.$t = /*@__PURE__*/ markType(GroupByResult, 'GroupByResult'); return GroupByResult; })();