summaryrefslogtreecommitdiff
path: root/source/github-helpers/github-url.ts
diff options
context:
space:
mode:
Diffstat (limited to 'source/github-helpers/github-url.ts')
-rw-r--r--source/github-helpers/github-url.ts15
1 files changed, 5 insertions, 10 deletions
diff --git a/source/github-helpers/github-url.ts b/source/github-helpers/github-url.ts
index f9355e32..c06d2256 100644
--- a/source/github-helpers/github-url.ts
+++ b/source/github-helpers/github-url.ts
@@ -1,16 +1,11 @@
import {getCurrentCommittish} from '.';
export default class GitHubURL {
- // @ts-expect-error https://github.com/microsoft/TypeScript/issues/26792
- user: string;
- // @ts-expect-error https://github.com/microsoft/TypeScript/issues/26792
- repository: string;
- // @ts-expect-error https://github.com/microsoft/TypeScript/issues/26792
- route: string;
- // @ts-expect-error https://github.com/microsoft/TypeScript/issues/26792
- branch: string;
- // @ts-expect-error https://github.com/microsoft/TypeScript/issues/26792
- filePath: string;
+ user = '';
+ repository = '';
+ route = '';
+ branch = '';
+ filePath = '';
private internalUrl: URL;