import { IAsset } from '../interface/asset.interface';
import { TextTypeEnum } from '../enum/text-type.enum';
/**
 * The Text Location Model
 */
export interface TextLocationModel {
    /**
     * DistanceFromTop
     */
    type: TextTypeEnum;
    /**
     * Position
     */
    position: IAsset;
}
