12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { XPositionReference } from '../Enums/XPositionReference';
|
|
import { IImage } from './IImage';
|
|
|
|
/**
|
|
* Model of available symbol to configure the application */
|
|
export interface IAvailableSymbol {
|
|
Name: string
|
|
XPositionReference: XPositionReference
|
|
Image: IImage
|
|
Width: number
|
|
Height: number
|
|
}
|