mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-16 01:25:42 -05:00
Adds experimental 'Apply Stashed Changes' command Adds experimental 'Delete Stashed Changes' to stashed changes quick pick
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
'use strict';
|
|
import { GitStashCommit } from './stashCommit';
|
|
|
|
export interface IGitStash {
|
|
repoPath: string;
|
|
commits: Map<string, GitStashCommit>;
|
|
} |