Dodano wykrywanie składów realnych

This commit is contained in:
2022-08-11 01:14:00 +02:00
parent ccb5aa0818
commit 83c091a572
5 changed files with 71 additions and 43 deletions
+4 -1
View File
@@ -14,6 +14,7 @@ export interface IStore {
chosenCarUseType: string;
stockList: IStock[];
readyStockList: IReadyStockList;
cargoOptions: any[][];
chosenStockListIndex: number;
@@ -77,4 +78,6 @@ export interface IStock {
imgSrc: string;
}
export interface IReadyStockList {
[key: string]: { stockString: string; type: string; number: string; name: string };
}