I have a custom object with random keys and values like the example below:
{
"sdfsdkhdfs": 1,
"jjgtusdf": 2
}
These keys are randomly generated, and there can be any number of them. I'm looking to define a type for this object in Typescript. Can anyone guide me on how to achieve this?