| 10 | const spanTag = Symbol('span'); |
| 11 | |
| 12 | export interface TraceResult { |
| 13 | name: string, |
| 14 | start: number, |
| 15 | end: number, |
| 16 | children: TraceResult[] |
| 17 | } |
| 18 | |
| 19 | /** Pure data object — safe to transfer across Worker Thread boundaries. */ |
| 20 | export interface RawSpan { |
nothing calls this directly
no outgoing calls
no test coverage detected