Handle rename & deletes in proposal

This commit is contained in:
Will Chen
2025-04-21 16:19:40 -07:00
parent b07defc9b8
commit 7041525c20
3 changed files with 59 additions and 18 deletions

View File

@@ -111,6 +111,7 @@ export interface FileChange {
name: string;
path: string;
summary: string;
type: "write" | "rename" | "delete";
}
export interface CodeProposal {