Type alias AdbClientOptionsValues

AdbClientOptionsValues: {
    bin: string;
    host: string;
    noAutoStart: boolean;
    port: number;
}

Type declaration

  • bin: string
    • path to adb.exe, if not set, env path is taken
  • host: string
    • default localhost
  • noAutoStart: boolean
    • if false, module will not attempt to start adb server
  • port: number
    • default 5037