diff --git a/sentry_sdk/types.py b/sentry_sdk/types.py index dff91e3719..042450f3de 100644 --- a/sentry_sdk/types.py +++ b/sentry_sdk/types.py @@ -22,6 +22,7 @@ Metric, MonitorConfig, SamplingContext, + SpanJSON, ) else: from typing import Any @@ -36,6 +37,7 @@ Log = Any MonitorConfig = Any SamplingContext = Any + SpanJSON = Any Metric = Any @@ -48,5 +50,6 @@ "Log", "MonitorConfig", "SamplingContext", + "SpanJSON", "Metric", )