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