(callback?: Function)
| 95 | } |
| 96 | |
| 97 | forceUpdate (callback?: Function) { |
| 98 | if (isFunction(callback)) { |
| 99 | this._pendingCallbacks.push(callback) |
| 100 | } |
| 101 | updateComponent(this, true) |
| 102 | } |
| 103 | |
| 104 | // tslint:disable-next-line |
| 105 | public render(nextProps?: P, nextState?, nextContext?): any {} |