(captureId: string, phase: string)
| 53 | } |
| 54 | |
| 55 | export function recordPhase(captureId: string, phase: string): void { |
| 56 | bucketFor(captureId).phases.push(phase) |
| 57 | } |
| 58 | |
| 59 | export function recordOnFinish(captureId: string): void { |
| 60 | bucketFor(captureId).onFinishCount += 1 |