(absolutePath, content)
| 21941 | return await this._storage.exists(absolutePath) |
| 21942 | } |
| 21943 | async write(absolutePath, content) { |
| 21944 | return await this._storage.write(absolutePath, content) |
| 21945 | } |
| 21946 | async list(absolutePath) { |
| 21947 | return await this._storage.list(absolutePath) |
| 21948 | } |