We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3825fba commit 13eb7aaCopy full SHA for 13eb7aa
packages/sdk-core/src/model/report/BacktraceReport.ts
@@ -1,7 +1,7 @@
1
import { BacktraceAttachment } from './BacktraceAttachment';
2
3
export interface BacktraceReport {
4
- get attributes(): Record<string, unknown>;
5
- get attachments(): BacktraceAttachment[];
+ readonly attributes: Record<string, unknown>;
+ readonly attachments: BacktraceAttachment[];
6
toData(): Record<string, unknown>;
7
}
0 commit comments