igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
38 lines (37 loc) • 1.53 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 { markEnum } from "./type";
/**
* Represents status of loading an image
*/
export var ImageLoadStatus = /*@__PURE__*/ (function (ImageLoadStatus) {
/**
* Specifies that image loading is in unknown status
*/
ImageLoadStatus[ImageLoadStatus["Unknown"] = 0] = "Unknown";
/**
* Specifies that image loading is in progress
*/
ImageLoadStatus[ImageLoadStatus["Loading"] = 1] = "Loading";
/**
* Specifies that image loading has completed
*/
ImageLoadStatus[ImageLoadStatus["Completed"] = 2] = "Completed";
/**
* Specifies that image loading has failed
*/
ImageLoadStatus[ImageLoadStatus["Failed"] = 3] = "Failed";
/**
* Specifies that image loading has been canceled
*/
ImageLoadStatus[ImageLoadStatus["Canceled"] = 4] = "Canceled";
return ImageLoadStatus;
})({});
/**
* @hidden
*/
export var ImageLoadStatus_$type = markEnum('ImageLoadStatus', 'Unknown,0|Loading,1|Completed,2|Failed,3|Canceled,4');