igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
21 lines (20 loc) • 497 B
TypeScript
import { Base, Type } from "./type";
import { ImageLoadStatus } from "./ImageLoadStatus";
/**
* @hidden
*/
export declare class ImageLoadResult extends Base {
static $t: Type;
private _status;
get status(): ImageLoadStatus;
set status(a: ImageLoadStatus);
private _path;
get path(): string;
set path(a: string);
private _error;
get error(): string;
set error(a: string);
private _data;
get data(): any;
set data(a: any);
}