igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
31 lines (30 loc) • 642 B
TypeScript
import { Type } from "./type";
/**
* Represents status of loading an image
*/
export declare enum ImageLoadStatus {
/**
* Specifies that image loading is in unknown status
*/
Unknown = 0,
/**
* Specifies that image loading is in progress
*/
Loading = 1,
/**
* Specifies that image loading has completed
*/
Completed = 2,
/**
* Specifies that image loading has failed
*/
Failed = 3,
/**
* Specifies that image loading has been canceled
*/
Canceled = 4
}
/**
* @hidden
*/
export declare let ImageLoadStatus_$type: Type;