I am html scraping a string that is formatted as follows (shortened for brevity):
"[{'name': 'Roddy Ricch',
'type': 'event',
'id': 'Z7r9jZ1Ae-Fuw',
'url': 'http://www.ticketsnow.com/InventoryBrowse/TicketList.aspx?PID=2848372',
'images': [
{'ratio': '3_2',
'source': '6.0',
........."
with multiple levels of arrays and objects. I would like to operate on the actual objects the string is meant to represent rather than 1 String Object.
How to I turn this string into the actual objects it is meant to represent in TypeScript?