Open lforst opened 4 days ago
Right now the argument passed to scope.setSDKProcessingMetadata() is typed as { [key: string]: unknown; }. We would like to be a bit more strict for certain fields on the metadata and type it as
scope.setSDKProcessingMetadata()
{ [key: string]: unknown; }
interface MetadataOrWhatever { request?: RequestEventData; [key: string]: unknown; }
Description
Right now the argument passed to
scope.setSDKProcessingMetadata()
is typed as{ [key: string]: unknown; }
. We would like to be a bit more strict for certain fields on the metadata and type it as