feat(FN-4685): complete Step 5-6 — verification and docs

Fusion-Task-Id: FN-4685
Fusion-Task-Lineage: 406ac389-c360-4e4d-b9ac-f5349a241907
This commit is contained in:
Fusion (runfusion.ai)
2026-05-15 17:04:39 -07:00
committed by gsxdsm
parent a70c39c5f5
commit 75dd07eace
2 changed files with 5 additions and 5 deletions

View File

@@ -191,19 +191,19 @@ export class WorktrunkWorktreeBackend implements WorktreeBackend {
});
}
async create(): Promise<{ path: string; branch: string }> {
async create(_input: WorktreeCreateInput): Promise<{ path: string; branch: string }> {
return this.throwUnsupported("create");
}
async remove(): Promise<void> {
async remove(_input: WorktreeRemoveInput): Promise<void> {
return this.throwUnsupported("remove");
}
async sync(): Promise<{ skipped: boolean }> {
async sync(_input: WorktreeSyncInput): Promise<{ skipped: boolean }> {
return this.throwUnsupported("sync");
}
async prune(): Promise<void> {
async prune(_input: WorktreePruneInput): Promise<void> {
return this.throwUnsupported("prune");
}
}