UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

42 lines (41 loc) 1.69 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 WebPageEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebPageEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.r = 0; this.q = 0; } get_type() { return "WebPageEventArgsDetail"; } get previous() { return this.r; } set previous(a) { this.r = a; this.j("Previous"); } get current() { return this.q; } set current(a) { this.q = a; this.j("Current"); } } WebPageEventArgsDetailDescription.$t = markType(WebPageEventArgsDetailDescription, 'WebPageEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebPageEventArgsDetailDescription.__marshalByValue1 = true; WebPageEventArgsDetailDescription.__marshalByValueAlias1 = "PageEventArgsDetail"; return WebPageEventArgsDetailDescription; })();