make processBinary async

This commit is contained in:
meganrogge 2021-04-02 11:14:05 -07:00
parent 215fe3d92b
commit 7dc766dabc

View file

@ -160,7 +160,7 @@ export class PtyService extends Disposable implements IPtyService {
return this._throwIfNoPty(id).orphanQuestionReply();
}
processBinary(id: number, data: string): void {
async processBinary(id: number, data: string): Promise<void> {
return this._throwIfNoPty(id).writeBinary(data);
}