(path: string)
| 81 | } |
| 82 | |
| 83 | async lstat(path: string): Promise<FsStat> { |
| 84 | const s = await this.ws.lstat(path); |
| 85 | if (!s) { |
| 86 | throw enoent(path); |
| 87 | } |
| 88 | return fromWorkspaceStat(s); |
| 89 | } |
| 90 | |
| 91 | async mkdir(path: string, options?: { recursive?: boolean }): Promise<void> { |
| 92 | await this.ws.mkdir(path, options); |
nothing calls this directly
no test coverage detected