igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
48 lines (47 loc) • 1.49 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 { Base, markType } from "./type";
/**
* @hidden
*/
export let ImageLoadResult = /*@__PURE__*/ (() => {
class ImageLoadResult extends Base {
constructor() {
super(...arguments);
this._status = 0;
this._path = null;
this._error = null;
this._data = null;
}
get status() {
return this._status;
}
set status(a) {
this._status = a;
}
get path() {
return this._path;
}
set path(a) {
this._path = a;
}
get error() {
return this._error;
}
set error(a) {
this._error = a;
}
get data() {
return this._data;
}
set data(a) {
this._data = a;
}
}
ImageLoadResult.$t = markType(ImageLoadResult, 'ImageLoadResult');
return ImageLoadResult;
})();