( path: string, files: string[] )
| 1639 | } |
| 1640 | |
| 1641 | export async function gitAddFiles( |
| 1642 | path: string, |
| 1643 | files: string[] |
| 1644 | ): Promise<void> { |
| 1645 | return getTransport().call("git_add_files", { path, files }) |
| 1646 | } |
| 1647 | |
| 1648 | // Window management commands |
| 1649 |
no test coverage detected