(action: TracingAction, fn: () => T)
| 17 | /** A single tracing snapshot. */ |
| 18 | export interface TracingSnapshot { |
| 19 | run<T>(action: TracingAction, fn: () => T): T; |
| 20 | |
| 21 | /** Disposes of the tracing snapshot. Must be run exactly once per TracingSnapshot. */ |
| 22 | dispose(): void; |
no outgoing calls
no test coverage detected