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 */
|
* Model of available symbol to configure the application */
|
||||||
export interface IAvailableSymbolModel {
|
export interface IAvailableSymbol {
|
||||||
Name: string
|
Name: string
|
||||||
XPositionReference: XPositionReference
|
XPositionReference: XPositionReference
|
||||||
Image: IImage
|
Image: IImage
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import { IAvailableContainer } from './IAvailableContainer';
|
import { IAvailableContainer } from './IAvailableContainer';
|
||||||
import { IAvailableSymbolModel } from './IAvailableSymbol';
|
import { IAvailableSymbol } from './IAvailableSymbol';
|
||||||
|
|
||||||
/** Model of configuration for the application to configure it */
|
/** Model of configuration for the application to configure it */
|
||||||
export interface IConfiguration {
|
export interface IConfiguration {
|
||||||
AvailableContainers: IAvailableContainer[]
|
AvailableContainers: IAvailableContainer[]
|
||||||
AvailableSymbols: IAvailableSymbolModel[]
|
AvailableSymbols: IAvailableSymbol[]
|
||||||
MainContainer: IAvailableContainer
|
MainContainer: IAvailableContainer
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue