igniteui-react-core
Version:
Ignite UI React Core.
89 lines (88 loc) • 2.73 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 { StockInfo } from "./StockInfo";
import { markType } from "./type";
/**
* @hidden
*/
var StockPricePoint = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(StockPricePoint, _super);
function StockPricePoint() {
var _this = _super.call(this) || this;
_this._open = 0;
_this._high = 0;
_this._low = 0;
_this._close = 0;
_this._volume = 0;
_this._date = new Date();
return _this;
}
Object.defineProperty(StockPricePoint.prototype, "open", {
get: function () {
return this._open;
},
set: function (a) {
this._open = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StockPricePoint.prototype, "high", {
get: function () {
return this._high;
},
set: function (a) {
this._high = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StockPricePoint.prototype, "low", {
get: function () {
return this._low;
},
set: function (a) {
this._low = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StockPricePoint.prototype, "close", {
get: function () {
return this._close;
},
set: function (a) {
this._close = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StockPricePoint.prototype, "volume", {
get: function () {
return this._volume;
},
set: function (a) {
this._volume = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StockPricePoint.prototype, "date", {
get: function () {
return this._date;
},
set: function (a) {
this._date = a;
},
enumerable: false,
configurable: true
});
StockPricePoint.$t = markType(StockPricePoint, 'StockPricePoint', StockInfo.$);
return StockPricePoint;
}(StockInfo));
export { StockPricePoint };