Implement Category list
This commit is contained in:
parent
9f24d2d40a
commit
0476a294d6
7 changed files with 61 additions and 51 deletions
|
@ -1,12 +1,14 @@
|
|||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import { IAvailableContainer } from './IAvailableContainer';
|
||||
import { IAvailableSymbol } from './IAvailableSymbol';
|
||||
import { ICategory } from './ICategory';
|
||||
import { IPattern } from './IPattern';
|
||||
|
||||
/** Model of configuration for the application to configure it */
|
||||
export interface IConfiguration {
|
||||
AvailableContainers: IAvailableContainer[] // TODO: Use a Map<string, IAvailableContainer>
|
||||
AvailableSymbols: IAvailableSymbol[] // TODO: Use a Map<string, IAvailableContainer>
|
||||
Categories: ICategory[]
|
||||
Patterns: IPattern[]
|
||||
MainContainer: IAvailableContainer
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue