We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80e46a2 commit 103da71Copy full SHA for 103da71
src/@types/git.d.ts
@@ -287,6 +287,9 @@ export interface Repository {
287
applyStash(index?: number): Promise<void>;
288
popStash(index?: number): Promise<void>;
289
dropStash(index?: number): Promise<void>;
290
+
291
+ createWorktree(options?: { path?: string; commitish?: string; branch?: string }): Promise<string>;
292
+ deleteWorktree(path: string, options?: { force?: boolean }): Promise<void>;
293
}
294
295
export interface RemoteSource {
0 commit comments