(path: string)
| 171 | } |
| 172 | |
| 173 | async readdirWithFileTypes(path: string): Promise<StateDirent[]> { |
| 174 | const entries = await this.fs.readdirWithFileTypes(path); |
| 175 | return sortDirents(entries.map((e) => stateDirent(e.name, e.type))); |
| 176 | } |
| 177 | |
| 178 | async find( |
| 179 | path: string, |
nothing calls this directly
no test coverage detected