Below are the issues that frequently being ask, you can update them if you see any similar issue:
- Cannot assign this.handlerFunction.bind(...) to this.handlerFunction because property handlerFunction is not writable.
Update this.handlerFunction = this.handlerFunction.bind(this);
to (this:any).handlerFunction = this.handlerFunction.bind(this);
Declare type by