| 18 | |
| 19 | /** Profile data for a single block */ |
| 20 | export interface BlockProfile { |
| 21 | id: string |
| 22 | label: string |
| 23 | durationMs: number |
| 24 | memoryBefore: number |
| 25 | memoryAfter: number |
| 26 | memoryDelta: number |
| 27 | } |
| 28 | |
| 29 | /** Default timeout for metrics fetch in milliseconds */ |
| 30 | const METRICS_FETCH_TIMEOUT_MS = 5000 |
nothing calls this directly
no outgoing calls
no test coverage detected