I am using TypeScript in my application, where I use function:
Object.assign(this.success, success.json())
However, during compilation, I receive the following error:
error TS2339: Property 'assign' does not exist on type 'ObjectConstructor'.
Do you have any idea how can I get rid of this error?