I want to declare a variable that is an object filled with arrays of objects for example:
let obj = {
"page1" : [ {x: 1, y: 2}, {x: 2, y: 5} ],
"page2" : [ {x: 1, y: 2}, {x: 2, y: 5} ],
"dsfsfffsfs": [ {x: 1, y: 2}, {x: 2, y: 5} ]
}
How can I declare that as an interface in typescript?