(options: DiagnosticsScopeOptions)
| 64 | } |
| 65 | |
| 66 | export function updateDiagnosticsScope(options: DiagnosticsScopeOptions): void { |
| 67 | const scope = diagnosticsStorage.getStore(); |
| 68 | if (!scope) return; |
| 69 | Object.assign(scope, options); |
| 70 | } |
| 71 | |
| 72 | export function getDiagnosticsMeta(): { |
| 73 | diagnosticId?: string; |
no outgoing calls
no test coverage detected