import { IAsset } from '../interface/asset.interface';
import { AssetTypeEnum } from '../enum/asset-type.enum';
import { ImageLoadedEnum } from '../enum/image-loaded.enum';
/**
 * The Asset Location Model
 */
export interface AssetLocationModel {
    /**
     * Image Type
     */
    imageType: ImageLoadedEnum;
    /**
     * Position
     */
    position: IAsset;
    /**
     * Type
     */
    type: AssetTypeEnum;
}
