chore(android): fix type in DeviceBackend (#7628)

This commit is contained in:
Yash Ladha 2021-07-15 12:12:09 +05:30 committed by GitHub
parent ebaa2dd824
commit 03b26ec783
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ export interface Backend {
export interface DeviceBackend {
serial: string;
status: string;
close(): void;
close(): Promise<void>;
init(): Promise<void>;
runCommand(command: string): Promise<Buffer>;
open(command: string): Promise<SocketBackend>;