The following variable contains a list of objects:
scenes = {
sky: {
image: 'assets/1.jpg',
points: {
blue_area: {
x: 1,
y: 2
},
}
},
blue_area: {
image: 'assets/2.jpg',
points: {
sky: {
x: 1,
y: 2
}
}
}
};
How I can declare an interface for this kind of variable?