13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
import { XPositionReference } from '../Enums/XPositionReference';
|
|
import { IImage } from './IImage';
|
|
|
|
/**
|
|
* Model of available symbol to configure the application */
|
|
export interface IAvailableSymbol {
|
|
Name: string
|
|
Image: IImage
|
|
Width?: number
|
|
Height?: number
|
|
XPositionReference?: XPositionReference
|
|
}
|