(path: string)
| 34 | } |
| 35 | |
| 36 | openDir(path: string): Promise<FileSystem> { |
| 37 | return Promise.resolve(new DropboxFileSystem(joinPath(this.path, path), this.accessToken)); |
| 38 | } |
| 39 | |
| 40 | create(path: string, _opts?: FileCreateOptions): Promise<FileWriter> { |
| 41 | return Promise.resolve(new DropboxFileWriter(this, joinPath(this.path, path))); |
nothing calls this directly
no test coverage detected