Skip to content

Commit 7506c02

Browse files
committedMay 29, 2023
Merge client settings
1 parent 9309487 commit 7506c02

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎packages/sdk-core/src/model/configuration/BacktraceConfiguration.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface BacktraceMetricsSupport {
2929
autoSendInterval?: number;
3030
}
3131

32-
export interface BasicBacktraceClientSettings extends BacktraceBasicSubmissionInformation {
32+
export interface BacktraceConfiguration extends BacktraceBasicSubmissionInformation {
3333
/**
3434
* Limits the number of reports the client will send per minute. If set to '0', there is no limit.
3535
* If set to a value greater than '0' and the value is reached, the client will not send any reports until the next minute.
@@ -49,8 +49,8 @@ export interface BasicBacktraceClientSettings extends BacktraceBasicSubmissionIn
4949
* Metrics such as crash free users and crash free sessions
5050
*/
5151
metrics?: BacktraceMetricsSupport;
52-
}
53-
54-
export interface BacktraceConfiguration extends BasicBacktraceClientSettings {
52+
/**
53+
* Offline database settings
54+
*/
5555
database?: BacktraceDatabaseConfiguration;
5656
}

0 commit comments

Comments
 (0)
Please sign in to comment.