(path: string)
| 327 | }; |
| 328 | |
| 329 | export const getBranches = async (path: string) => { |
| 330 | return getSortedRefs({ |
| 331 | path, |
| 332 | sort: "-committerdate", |
| 333 | refNamespace: "refs/heads", |
| 334 | }); |
| 335 | }; |
| 336 | |
| 337 | export const getTags = async (path: string) => { |
| 338 | return getSortedRefs({ |
no test coverage detected