igniteui-react-core
Version:
Ignite UI React Core.
42 lines (41 loc) • 1.78 kB
JavaScript
/*
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 { WebCancelableEventArgsDetailDescription } from "./WebCancelableEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebPageCancellableEventArgsDetailDescription = /*@__PURE__*/ (() => {
class WebPageCancellableEventArgsDetailDescription extends WebCancelableEventArgsDetailDescription {
get_type() {
return "WebPageCancellableEventArgsDetail";
}
constructor() {
super();
this.n = 0;
this.o = 0;
}
get current() {
return this.n;
}
set current(a) {
this.n = a;
this.g("Current");
}
get next() {
return this.o;
}
set next(a) {
this.o = a;
this.g("Next");
}
}
WebPageCancellableEventArgsDetailDescription.$t = /*@__PURE__*/ markType(WebPageCancellableEventArgsDetailDescription, 'WebPageCancellableEventArgsDetailDescription', WebCancelableEventArgsDetailDescription.$);
WebPageCancellableEventArgsDetailDescription.__marshalByValue1 = true;
WebPageCancellableEventArgsDetailDescription.__marshalByValueAlias1 = "PageCancellableEventArgsDetail";
return WebPageCancellableEventArgsDetailDescription;
})();