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