Skip to content

Commit 13eb7aa

Browse files
committed
Use fields as attachments/attributes in the report object
1 parent 3825fba commit 13eb7aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { BacktraceAttachment } from './BacktraceAttachment';
22

33
export interface BacktraceReport {
4-
get attributes(): Record<string, unknown>;
5-
get attachments(): BacktraceAttachment[];
4+
readonly attributes: Record<string, unknown>;
5+
readonly attachments: BacktraceAttachment[];
66
toData(): Record<string, unknown>;
77
}

0 commit comments

Comments
 (0)