igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
66 lines (65 loc) • 2.2 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 ImageLoadResult = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ImageLoadResult, _super);
function ImageLoadResult() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._status = 0;
_this._path = null;
_this._error = null;
_this._data = null;
return _this;
}
Object.defineProperty(ImageLoadResult.prototype, "status", {
get: function () {
return this._status;
},
set: function (a) {
this._status = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ImageLoadResult.prototype, "path", {
get: function () {
return this._path;
},
set: function (a) {
this._path = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ImageLoadResult.prototype, "error", {
get: function () {
return this._error;
},
set: function (a) {
this._error = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ImageLoadResult.prototype, "data", {
get: function () {
return this._data;
},
set: function (a) {
this._data = a;
},
enumerable: false,
configurable: true
});
ImageLoadResult.$t = markType(ImageLoadResult, 'ImageLoadResult');
return ImageLoadResult;
}(Base));
export { ImageLoadResult };