I am using TypeScript in my application, where I use function:
Object.assign(this.success, success.json())
However, during compilation, I r
I've added typings:
typings install dt~es6-shim --global --save
I know this has been long but here is an easy fix
(Object as any).assign(this.success, success.json())