Implement events for external use + Rename interfaces with a I prefix + add some documentation #26
2 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ import { IImage } from './IImage';
|
|||
|
||||
/**
|
||||
* Model of available symbol to configure the application */
|
||||
export interface IAvailableSymbolModel {
|
||||
export interface IAvailableSymbol {
|
||||
Name: string
|
||||
XPositionReference: XPositionReference
|
||||
Image: IImage
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import { IAvailableContainer } from './IAvailableContainer';
|
||||
import { IAvailableSymbolModel } from './IAvailableSymbol';
|
||||
import { IAvailableSymbol } from './IAvailableSymbol';
|
||||
|
||||
/** Model of configuration for the application to configure it */
|
||||
export interface IConfiguration {
|
||||
AvailableContainers: IAvailableContainer[]
|
||||
AvailableSymbols: IAvailableSymbolModel[]
|
||||
AvailableSymbols: IAvailableSymbol[]
|
||||
MainContainer: IAvailableContainer
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue