(workspace_id: string)
| 631 | } |
| 632 | |
| 633 | export async function getGitRemote(workspace_id: string): Promise<string | null> { |
| 634 | return invoke("get_git_remote", { workspaceId: workspace_id }); |
| 635 | } |
| 636 | |
| 637 | export async function stageGitFile(workspaceId: string, path: string) { |
| 638 | return invoke("stage_git_file", { workspaceId, path }); |