UNPKG

appium-adb

Version:

Android Debug Bridge interface

34 lines 933 B
import type { Logcat } from './logcat'; import type { StringRecord } from './tools/types'; export interface ADBOptions { sdkRoot?: string; udid?: string; useKeystore?: boolean; keystorePath?: string; keystorePassword?: string; keyAlias?: string; keyPassword?: string; executable?: ADBExecutable; tmpDir?: string; curDeviceId?: string; emulatorPort?: number; logcat?: Logcat; binaries?: StringRecord; suppressKillServer?: boolean; adbPort?: number; adbHost?: string; adbExecTimeout?: number; remoteAppsCacheLimit?: number; buildToolsVersion?: string; allowOfflineDevices?: boolean; allowDelayAdb?: boolean; remoteAdbHost?: string; remoteAdbPort?: number; clearDeviceLogsOnStart?: boolean; listenAllNetwork?: boolean; } export interface ADBExecutable { path: string; defaultArgs: string[]; } //# sourceMappingURL=types.d.ts.map