()
| 16 | } |
| 17 | |
| 18 | async verify(): Promise<void> { |
| 19 | const token = await AuthVerify("onedrive"); |
| 20 | this.accessToken = token; |
| 21 | return this.list().then(); |
| 22 | } |
| 23 | |
| 24 | async open(file: FileInfo): Promise<FileReader> { |
| 25 | return new OneDriveFileReader(this, file); |
nothing calls this directly
no test coverage detected