igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 1.62 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 { Shape } from "./Shape";
import { Rect } from "./Rect";
import { markType } from "./type";
/**
* @hidden
*/
var Rectangle = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(Rectangle, _super);
function Rectangle() {
var _this = _super.call(this) || this;
_this.as = null;
_this.an = 0;
_this.ao = 0;
_this.as = new Rect(0, 0, 0, 0, 0);
return _this;
}
Object.defineProperty(Rectangle.prototype, "ap", {
get: function () {
return this.an;
},
set: function (a) {
this.an = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(Rectangle.prototype, "aq", {
get: function () {
return this.ao;
},
set: function (a) {
this.ao = a;
},
enumerable: false,
configurable: true
});
Rectangle.prototype.ar = function (a) {
};
Rectangle.$t = markType(Rectangle, 'Rectangle', Shape.$);
return Rectangle;
}(Shape));
export { Rectangle };