UNPKG

bp-prism-game

Version:
16 lines (15 loc) 301 B
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; }