I have json data that is structured like this:
{
"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,
How can I map this to muliple objects in typescript like this:
export interface Stock {
name: string;
value: number;
}
Thanks
baseis USD and at the moment 1 USD ≈ 1.33 AUD. Might not be good to call itStockthen.