igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.34 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 { __extends } from "tslib";
import { WebCancelableEventArgsDetailDescription } from "./WebCancelableEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebPageCancellableEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPageCancellableEventArgsDetailDescription, _super);
function WebPageCancellableEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.n = 0;
_this.o = 0;
return _this;
}
WebPageCancellableEventArgsDetailDescription.prototype.get_type = function () {
return "WebPageCancellableEventArgsDetail";
};
Object.defineProperty(WebPageCancellableEventArgsDetailDescription.prototype, "current", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("Current");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPageCancellableEventArgsDetailDescription.prototype, "next", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("Next");
},
enumerable: false,
configurable: true
});
WebPageCancellableEventArgsDetailDescription.$t = markType(WebPageCancellableEventArgsDetailDescription, 'WebPageCancellableEventArgsDetailDescription', WebCancelableEventArgsDetailDescription.$);
WebPageCancellableEventArgsDetailDescription.__marshalByValue1 = true;
WebPageCancellableEventArgsDetailDescription.__marshalByValueAlias1 = "PageCancellableEventArgsDetail";
return WebPageCancellableEventArgsDetailDescription;
}(WebCancelableEventArgsDetailDescription));
export { WebPageCancellableEventArgsDetailDescription };