Merge commit 'refs/pull/74345/head' of github.com:microsoft/vscode into pr/74345

This commit is contained in:
Joao Moreno
2019-10-24 15:13:29 +02:00
6 changed files with 96 additions and 3 deletions

View File

@@ -37,6 +37,11 @@ export interface Branch extends Ref {
readonly behind?: number;
}
export interface Tag extends Ref {
readonly name: string;
readonly message?: string;
}
export interface Commit {
readonly hash: string;
readonly message: string;