(path: string)
| 159 | } |
| 160 | |
| 161 | async lstat(path: string): Promise<StateStat | null> { |
| 162 | return this.tryStat(() => this.fs.lstat(path)); |
| 163 | } |
| 164 | |
| 165 | async mkdir(path: string, options?: StateMkdirOptions): Promise<void> { |
| 166 | await this.fs.mkdir(path, options as MkdirOptions | undefined); |
no test coverage detected