Version: 1.0.01.0.11.0.21.0.31.0.4
import { Device } from "./device";
export declare class Adb {
/**
* The folder where adb.exe is located
*/
readonly path: string;
constructor(adbPath: string);
getDevices(retry?: number): Promise<Device[]>;
}