UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2.09 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 WebRowDataEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebRowDataEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.q = null; this.s = null; this.r = null; this.t = null; } get_type() { return "WebRowDataEventArgsDetail"; } get data() { return this.q; } set data(a) { this.q = a; this.j("Data"); } get rowData() { return this.s; } set rowData(a) { this.s = a; this.j("RowData"); } get primaryKey() { return this.r; } set primaryKey(a) { this.r = a; this.j("PrimaryKey"); } get rowKey() { return this.t; } set rowKey(a) { this.t = a; this.j("RowKey"); } } WebRowDataEventArgsDetailDescription.$t = markType(WebRowDataEventArgsDetailDescription, 'WebRowDataEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebRowDataEventArgsDetailDescription.__marshalByValue1 = true; WebRowDataEventArgsDetailDescription.__marshalByValueAlias1 = "RowDataEventArgsDetail"; return WebRowDataEventArgsDetailDescription; })();