( path: string, file: string )
| 1632 | } |
| 1633 | |
| 1634 | export async function gitRollbackFile( |
| 1635 | path: string, |
| 1636 | file: string |
| 1637 | ): Promise<void> { |
| 1638 | return getTransport().call("git_rollback_file", { path, file }) |
| 1639 | } |
| 1640 | |
| 1641 | export async function gitAddFiles( |
| 1642 | path: string, |
no test coverage detected