Files
vscode-gitlens/src/git/models/stash.ts
Eric Amodio 9945ee6d94 Adds 'Show Stashed Changes` command
Adds experimental 'Apply Stashed Changes' command
Adds experimental 'Delete Stashed Changes' to stashed changes quick pick
2017-03-29 01:49:26 -04:00

7 lines
157 B
TypeScript

'use strict';
import { GitStashCommit } from './stashCommit';
export interface IGitStash {
repoPath: string;
commits: Map<string, GitStashCommit>;
}