(path: string, data: Buffer)
| 745 | } |
| 746 | |
| 747 | async writeBytes(path: string, data: Buffer): Promise<number> { |
| 748 | await sftpWriteFile(this._sftp, this._resolvePath(path), data); |
| 749 | return data.length; |
| 750 | } |
| 751 | |
| 752 | async writeText( |
| 753 | path: string, |
nothing calls this directly
no test coverage detected