We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c3a38 commit a175485Copy full SHA for a175485
packages/types/src/event.ts
@@ -11,6 +11,7 @@ import { CaptureContext } from './scope';
11
import { SdkInfo } from './sdkinfo';
12
import { Severity, SeverityLevel } from './severity';
13
import { Span } from './span';
14
+import { Thread } from './thread';
15
import { TransactionNameChange, TransactionSource } from './transaction';
16
import { User } from './user';
17
@@ -52,6 +53,9 @@ export interface Event {
52
53
changes: TransactionNameChange[];
54
propagations: number;
55
};
56
+ threads?: {
57
+ values: Thread[];
58
+ };
59
}
60
61
/** JSDoc */
0 commit comments