(markName: string)
| 212 | } |
| 213 | |
| 214 | function markAndClear(markName: string) { |
| 215 | // This method won't be called unless these functions are defined, so we can skip the extra typeof check. |
| 216 | ((performanceTarget: any): Performance).mark(markName); |
| 217 | ((performanceTarget: any): Performance).clearMarks(markName); |
| 218 | } |
| 219 | |
| 220 | function recordReactMeasureStarted( |
| 221 | type: ReactMeasureType, |
no outgoing calls
no test coverage detected