UNPKG

@qc2168/mib

Version:
8 lines (7 loc) 289 B
export interface DevicesType { name: string; status: string; } export declare const devices: (adbPath: string) => DevicesType[]; export declare const selectDevice: (adbPath: string) => Promise<string | null>; export declare const rebootADBServer: (adbPath: string) => void;