( path: string, file: string, refName?: string )
| 1599 | } |
| 1600 | |
| 1601 | export async function gitShowFile( |
| 1602 | path: string, |
| 1603 | file: string, |
| 1604 | refName?: string |
| 1605 | ): Promise<string> { |
| 1606 | return getTransport().call("git_show_file", { |
| 1607 | path, |
| 1608 | file, |
| 1609 | refName: refName ?? null, |
| 1610 | }) |
| 1611 | } |
| 1612 | |
| 1613 | export async function gitIsTracked( |
| 1614 | path: string, |
no test coverage detected