I have a JSON dataset with the following structure:
{
"timestamp": 1467471622,
"base": "USD",
"rates": {
"AED": 3.673027,
"AFN": 68.475,
"ALL": 123.095199,
"AMD": 476.8075,
"ANG": 1.78385,
"AOA": 165.846832,
"ARS": 15.05143,
"AUD": 1.333463,
"AWG": 1.793333,
"AZN": 1.553975,
"BAM": 1.757679,
"BBD": 2,
"BDT": 78.33184,
"BGN": 1.756683,
"BHD": 0.377337,
"BIF": 1660.642515,
"BMD": 1,
"BND": 1.344589,
Is there a way to convert this data into multiple TypeScript objects like the one below:
export interface Stock {
name: string;
value: number;
}
Appreciate any suggestions on accomplishing this task.