We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0096bb commit 93dba46Copy full SHA for 93dba46
src/features/diff/data/OasDiffCalculator.ts
@@ -1,6 +1,6 @@
1
import { execFileSync } from "child_process"
2
import { DiffChange } from "@/features/diff/domain/DiffChange"
3
-import { GitHubClient } from "@/common"
+import type { IGitHubClient } from "@/common"
4
import { DiffResult, IOasDiffCalculator } from "./IOasDiffCalculator"
5
6
/**
@@ -23,7 +23,7 @@ function isValidGitHubUrl(url: string): boolean {
23
}
24
25
export class OasDiffCalculator implements IOasDiffCalculator {
26
- constructor(private readonly githubClient: GitHubClient) {}
+ constructor(private readonly githubClient: IGitHubClient) {}
27
28
async calculateDiff(
29
owner: string,
0 commit comments