Fix AureliaSpa TypeScript compile error introduced by newer version of TypeScript

This commit is contained in:
SteveSandersonMS
2016-11-28 17:35:00 +00:00
parent a3cba50e88
commit 03774253eb

View File

@@ -13,7 +13,7 @@ export class Fetchdata {
http.fetch('/api/SampleData/WeatherForecasts')
.then(result => result.json())
.then(data => {
this.forecasts = data;
this.forecasts = data as any;
});
}
}