UNPKG

igniteui-react-core

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