Adds go back choice to quickpick menus

This commit is contained in:
Eric Amodio
2017-02-10 04:05:45 -05:00
parent 8111190d84
commit 615f55574b
3 changed files with 93 additions and 57 deletions

View File

@@ -5,6 +5,10 @@ import { GitCommit, GitUri } from '../gitProvider';
import * as moment from 'moment';
import * as path from 'path';
export interface BackQuickPickItem extends QuickPickItem {
command: Commands;
}
export class CommitQuickPickItem implements QuickPickItem {
label: string;