UNPKG

igniteui-react-core

Version:
61 lines (60 loc) 1.9 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 CellKeyDescription = /*@__PURE__*/ (() => { class CellKeyDescription extends Description { get_type() { return "CellKey"; } get type() { return this.get_type(); } constructor() { super(); this.m = null; this.p = null; this.s = null; this.k = null; } get primaryKey() { return this.m; } set primaryKey(a) { this.m = a; this.j("PrimaryKey"); } get rowItem() { return this.p; } set rowItem(a) { this.p = a; this.j("RowItem"); } get columnUniqueKey() { return this.s; } set columnUniqueKey(a) { this.s = a; this.j("ColumnUniqueKey"); } get resolvedColumn() { return this.k; } set resolvedColumn(a) { this.k = a; this.j("ResolvedColumn"); } } CellKeyDescription.$t = /*@__PURE__*/ markType(CellKeyDescription, 'CellKeyDescription', Description.$); CellKeyDescription.__marshalByValue = true; CellKeyDescription.__marshalByValueAlias = "CellKey"; return CellKeyDescription; })();