Skip to content

Commit

Permalink
add blank lines in between class variables
Browse files Browse the repository at this point in the history
  • Loading branch information
MFarejowicz committed Jul 12, 2024
1 parent ad3093a commit 53b5c59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/detectors/InboundNetworkIssueDetector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ export interface InboundNetworkIssueDetectorParams extends BaseIssueDetectorPara

class InboundNetworkIssueDetector extends BaseIssueDetector {
readonly #highPacketLossThresholdPct: number;

readonly #highJitterThreshold: number;

readonly #highJitterBufferDelayThresholdMs: number;

readonly #highRttThresholdMs: number;

constructor(params: InboundNetworkIssueDetectorParams = {}) {
Expand Down
1 change: 1 addition & 0 deletions src/detectors/OutboundNetworkIssueDetector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ interface OutboundNetworkIssueDetectorParams extends BaseIssueDetectorParams {

class OutboundNetworkIssueDetector extends BaseIssueDetector {
readonly #highPacketLossThresholdPct: number;

readonly #highJitterThreshold: number;

constructor(params: OutboundNetworkIssueDetectorParams = {}) {
Expand Down

0 comments on commit 53b5c59

Please sign in to comment.