| 72 | const DEFAULT_TRACES_EXPORT_INTERVAL_MS = 5000 |
| 73 | |
| 74 | class TelemetryTimeoutError extends Error {} |
| 75 | |
| 76 | function telemetryTimeout(ms: number, message: string): Promise<never> { |
| 77 | return new Promise((_, reject) => { |
nothing calls this directly
no outgoing calls
no test coverage detected