Implement associated container and default X, Y position for Symbol Related work items: #7537, #7540
25 lines
553 B
TypeScript
25 lines
553 B
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
import { PositionReference } from '../Enums/PositionReference';
|
|
import { IAvailableContainer } from './IAvailableContainer';
|
|
import { IImage } from './IImage';
|
|
|
|
/**
|
|
* Model of available symbol to configure the application */
|
|
export interface IAvailableSymbol {
|
|
Name: string
|
|
|
|
Image: IImage
|
|
|
|
X?: number
|
|
|
|
Y?: number
|
|
|
|
Width?: number
|
|
|
|
Height?: number
|
|
|
|
PositionReference?: PositionReference
|
|
|
|
/** An existing or new available container */
|
|
AssociatedContainer?: IAvailableContainer
|
|
}
|