igniteui-react-core
Version:
Ignite UI React Core.
53 lines (52 loc) • 1.69 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 { FrameworkElement } from "./FrameworkElement";
import { markType } from "./type";
/**
* @hidden
*/
var Shape = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(Shape, _super);
function Shape() {
var _this = _super.call(this) || this;
_this._fill = null;
_this._stroke = null;
_this.ab = false;
_this.ad = 0;
_this.ai = null;
_this.al = 0;
_this.ak = 0;
_this.am = 0;
_this.ac = 0;
_this.aj = 0;
return _this;
}
Object.defineProperty(Shape.prototype, "fill", {
get: function () {
return this._fill;
},
set: function (a) {
this._fill = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(Shape.prototype, "stroke", {
get: function () {
return this._stroke;
},
set: function (a) {
this._stroke = a;
},
enumerable: false,
configurable: true
});
Shape.$t = markType(Shape, 'Shape', FrameworkElement.$);
return Shape;
}(FrameworkElement));
export { Shape };