const asideBlock = {
links: {
0 : "../images/shop/wells/well-01.png",
1 : "../images/shop/depots/depot-01.png",
2 : "../images/shop/cages/cage-01.png"
},
nameCost: {
"Колодец" : "200",
"Склад" : "150",
"Клетка" : "100",
}
};
interface AsideBlock {
links: Record<number, string>;
nameCost: Record<string, `${number}`>;
}
const asideBlock: AsideBlock = {
links: {
0 : "../images/shop/wells/well-01.png",
1 : "../images/shop/depots/depot-01.png",
2 : "../images/shop/cages/cage-01.png"
},
nameCost: {
"Колодец" : "200",
"Склад" : "150",
"Клетка" : "100",
}
};