()
| 24 | } |
| 25 | |
| 26 | async verify(): Promise<void> { |
| 27 | const token = await AuthVerify("dropbox"); |
| 28 | this.accessToken = token; |
| 29 | return this.list().then(); |
| 30 | } |
| 31 | |
| 32 | open(file: FileInfo): Promise<FileReader> { |
| 33 | return Promise.resolve(new DropboxFileReader(this, file)); |
nothing calls this directly
no test coverage detected