UNPKG

235 BTypeScriptView Raw
1import { Device } from "./device";
2export declare class Adb {
3 /**
4 * The folder where adb.exe is located
5 */
6 readonly path: string;
7 constructor(adbPath: string);
8 getDevices(retry?: number): Promise<Device[]>;
9}