summaryrefslogtreecommitdiff
path: root/source/github-helpers/github-url.ts
diff options
context:
space:
mode:
authorGravatar Sindre Sorhus <sindresorhus@gmail.com> 2020-06-03 21:42:18 +0800
committerGravatar GitHub <noreply@github.com> 2020-06-03 21:42:18 +0800
commit0fa514dbeeab6395ef095cff80beac41443a6574 (patch)
treeb175648cbe2a88c6d7e8763e631c7205e3e284a4 /source/github-helpers/github-url.ts
parentb393e2e2465a91ccbddf6ff60def616020712306 (diff)
downloadrefined-github-0fa514dbeeab6395ef095cff80beac41443a6574.tar.gz
refined-github-0fa514dbeeab6395ef095cff80beac41443a6574.tar.zst
refined-github-0fa514dbeeab6395ef095cff80beac41443a6574.zip
Upgrade dependencies (#3168)
Co-authored-by: Fregante <opensource@bfred.it>
Diffstat (limited to 'source/github-helpers/github-url.ts')
-rw-r--r--source/github-helpers/github-url.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/github-helpers/github-url.ts b/source/github-helpers/github-url.ts
index 6be68ff7..139bf1a3 100644
--- a/source/github-helpers/github-url.ts
+++ b/source/github-helpers/github-url.ts
@@ -1,15 +1,15 @@
import {getCurrentBranch} from '.';
export default class GitHubURL extends URL {
- // @ts-ignore https://github.com/microsoft/TypeScript/issues/26792
+ // @ts-expect-error https://github.com/microsoft/TypeScript/issues/26792
user: string;
- // @ts-ignore
+ // @ts-expect-error
repository: string;
- // @ts-ignore
+ // @ts-expect-error
route: string;
- // @ts-ignore
+ // @ts-expect-error
branch: string;
- // @ts-ignore
+ // @ts-expect-error
filePath: string;
assign = Object.assign.bind(null, this);