Skip to content

Commit

Permalink
chore: remove exports on local types
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 committed Jan 8, 2025
1 parent c6d76dc commit 13b047b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/helpers/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export type CloverFile = {
line: CloverLine[];
};

export type CloverProjectMetrics = {
type CloverProjectMetrics = {
'@statements': number;
'@coveredstatements': number;
'@conditionals': number;
Expand All @@ -142,7 +142,7 @@ export type CloverProjectMetrics = {
'@classes': number;
};

export type CloverProject = {
type CloverProject = {
'@timestamp': number;
'@name': string;
metrics: CloverProjectMetrics;
Expand Down Expand Up @@ -170,7 +170,7 @@ export type CoverageHandler = {
finalize(): SonarCoverageObject | CoberturaCoverageObject | CloverCoverageObject | LcovCoverageObject;
};

export type LcovLine = {
type LcovLine = {
lineNumber: number;
hitCount: number;
};
Expand Down

0 comments on commit 13b047b

Please sign in to comment.