File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export class Scope implements ScopeInterface {
79
79
* A place to stash data which is needed at some point in the SDK's event processing pipeline but which shouldn't get
80
80
* sent to Sentry
81
81
*/
82
- protected _sdkProcessingMetadata ?: { [ key : string ] : any } = { } ;
82
+ protected _sdkProcessingMetadata ?: { [ key : string ] : unknown } = { } ;
83
83
84
84
/**
85
85
* Inherit values from the parent scope.
@@ -455,7 +455,7 @@ export class Scope implements ScopeInterface {
455
455
/**
456
456
* Add data which will be accessible during event processing but won't get sent to Sentry
457
457
*/
458
- public setSDKProcessingMetadata ( newData : { [ key : string ] : any } ) : this {
458
+ public setSDKProcessingMetadata ( newData : { [ key : string ] : unknown } ) : this {
459
459
this . _sdkProcessingMetadata = { ...this . _sdkProcessingMetadata , ...newData } ;
460
460
461
461
return this ;
You can’t perform that action at this time.
0 commit comments