import { type IAvailableSymbol } from './IAvailableSymbol'; export interface ISymbolModel { /** Identifier */ id: string /** Displayed Text */ displayedText: string /** Type */ type: string /** Configuration of the symbol */ config: IAvailableSymbol /** Horizontal offset */ x: number // TODO: Implement Y and verticality /** Width */ width: number /** Height */ height: number /** List of linked container id */ linkedContainers: Set /** Dimensions options */ showDimension: boolean }