igniteui-react-core
Version:
Ignite UI React Core.
46 lines (45 loc) • 1.72 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 { Base, markType } from "./type";
/**
* @hidden
*/
var StockChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(StockChangedEventArgs, _super);
function StockChangedEventArgs(a, b) {
var _this = _super.call(this) || this;
_this._addedSymbols = null;
_this._removedSymbols = null;
_this.addedSymbols = a;
_this.removedSymbols = b;
return _this;
}
Object.defineProperty(StockChangedEventArgs.prototype, "addedSymbols", {
get: function () {
return this._addedSymbols;
},
set: function (a) {
this._addedSymbols = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StockChangedEventArgs.prototype, "removedSymbols", {
get: function () {
return this._removedSymbols;
},
set: function (a) {
this._removedSymbols = a;
},
enumerable: false,
configurable: true
});
StockChangedEventArgs.$t = markType(StockChangedEventArgs, 'StockChangedEventArgs');
return StockChangedEventArgs;
}(Base));
export { StockChangedEventArgs };