()
| 6 | constructor(public trackedFunction: (...args: any[]) => any = (...args: any[]) => {}) {} |
| 7 | |
| 8 | public start() { |
| 9 | this.createDisplayElement(); |
| 10 | this.startTracking(); |
| 11 | } |
| 12 | |
| 13 | private createDisplayElement() { |
| 14 | this.displayElement = document.createElement('div'); |
nothing calls this directly
no test coverage detected