summaryrefslogtreecommitdiff
path: root/source/github-helpers/github-file-url.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/github-helpers/github-file-url.ts (renamed from source/github-helpers/github-url.ts)4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/github-helpers/github-url.ts b/source/github-helpers/github-file-url.ts
index 411b6091..1cb812aa 100644
--- a/source/github-helpers/github-url.ts
+++ b/source/github-helpers/github-file-url.ts
@@ -2,7 +2,7 @@ import {isRepoRoot} from 'github-url-detection';
import getCurrentGitRef from './get-current-git-ref.js';
-export default class GitHubURL {
+export default class GitHubFileURL {
user = '';
repository = '';
route = '';
@@ -21,7 +21,7 @@ export default class GitHubURL {
return this.href;
}
- assign(...replacements: Array<Partial<GitHubURL>>): this {
+ assign(...replacements: Array<Partial<GitHubFileURL>>): this {
Object.assign(this, ...replacements);
return this;
}