This commit is contained in:
2022-07-26 00:31:00 +02:00
parent bea95f9cf3
commit 451a184ccb
9 changed files with 149 additions and 159 deletions
+5
View File
@@ -1,8 +1,12 @@
export type Vehicle = ILocomotive | ICarWagon;
export interface IStore {
chosenCar: ICarWagon | null;
chosenLoco: ILocomotive | null;
chosenCargo: ICargo | null;
chosenVehicle: Vehicle | null;
showSupporter: boolean;
imageLoading: boolean;
@@ -70,3 +74,4 @@ export interface IStock {
count: number;
imgSrc: string;
}