Skip to content

Commit

Permalink
fix: export base abstract detector (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgmel authored Mar 15, 2024
1 parent bd51e1b commit 6279163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detectors/BaseIssueDetector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface BaseIssueDetectorParams {
statsCleanupTtlMs?: number;
}

abstract class BaseIssueDetector implements IssueDetector {
export abstract class BaseIssueDetector implements IssueDetector {
readonly #lastProcessedStats: Map<string, WebRTCStatsParsed | undefined>;

readonly #statsCleanupDelayMs: number;
Expand Down

0 comments on commit 6279163

Please sign in to comment.