(options = {})
| 498 | }); |
| 499 | }, |
| 500 | async lsFiles(options = {}) { |
| 501 | return lsFilesWith({ |
| 502 | ...options, |
| 503 | fs: await fs(), |
| 504 | git: await loadGit<IsomorphicGitReadsClient>(), |
| 505 | cache, |
| 506 | }); |
| 507 | }, |
| 508 | async lsTree(options) { |
| 509 | return lsTreeWith({ |
| 510 | ...options, |
nothing calls this directly
no test coverage detected