I am pondering, how can I generate a TypeScript interface for JSON data like this:
"Cities": {
"NY": ["New York", [8000, 134]],
"LA": ["Los Angeles", [4000, 97]],
}
I'm uncertain about how to handle these nested arrays and unique identifiers.