Fixing TS 3.7 dom typings errors

This commit is contained in:
Matt Bierner
2019-10-10 13:59:16 -07:00
parent 495633ccc5
commit d80739df02
17 changed files with 45 additions and 49 deletions

View File

@@ -1476,9 +1476,9 @@ export class Repository implements Disposable {
const [refs, remotes, submodules, rebaseCommit] = await Promise.all([this.repository.getRefs({ sort }), this.repository.getRemotes(), this.repository.getSubmodules(), this.getRebaseCommit()]);
this._HEAD = HEAD;
this._refs = refs;
this._remotes = remotes;
this._submodules = submodules;
this._refs = refs!;
this._remotes = remotes!;
this._submodules = submodules!;
this.rebaseCommit = rebaseCommit;
const index: Resource[] = [];