(path: string)
| 108 | } |
| 109 | |
| 110 | async openDir(path: string): Promise<FileSystem> { |
| 111 | return this.limiter.execute(async () => { |
| 112 | const fs = await this.fs.openDir(path); |
| 113 | return new LimiterFileSystem(fs, this.limiter); |
| 114 | }, "openDir"); |
| 115 | } |
| 116 | |
| 117 | async create(path: string, opts?: FileCreateOptions): Promise<FileWriter> { |
| 118 | return this.limiter.execute(async () => { |