UNPKG

igniteui-react-core

Version:
31 lines (30 loc) 612 B
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;