File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -272,6 +272,18 @@ export class ApiRepository implements Repository {
272
272
mergeAbort ( ) : Promise < void > {
273
273
return this . repository . mergeAbort ( ) ;
274
274
}
275
+
276
+ applyStash ( index ?: number ) : Promise < void > {
277
+ return this . repository . applyStash ( index ) ;
278
+ }
279
+
280
+ popStash ( index ?: number ) : Promise < void > {
281
+ return this . repository . popStash ( index ) ;
282
+ }
283
+
284
+ dropStash ( index ?: number ) : Promise < void > {
285
+ return this . repository . dropStash ( index ) ;
286
+ }
275
287
}
276
288
277
289
export class ApiGit implements Git {
Original file line number Diff line number Diff line change @@ -266,6 +266,10 @@ export interface Repository {
266
266
commit ( message : string , opts ?: CommitOptions ) : Promise < void > ;
267
267
merge ( ref : string ) : Promise < void > ;
268
268
mergeAbort ( ) : Promise < void > ;
269
+
270
+ applyStash ( index ?: number ) : Promise < void > ;
271
+ popStash ( index ?: number ) : Promise < void > ;
272
+ dropStash ( index ?: number ) : Promise < void > ;
269
273
}
270
274
271
275
export interface RemoteSource {
You can’t perform that action at this time.
0 commit comments