appium-android-driver
Version:
Android UiAutomator and Chrome support for Appium
13 lines • 595 B
TypeScript
/**
* Performs the requested action on the default bluetooth adapter
*
* @this {AndroidDriver}
* @param {'enable' | 'disable' | 'unpairAll'} action
* @returns {Promise<void>}
* @throws {Error} if the device under test has no default bluetooth adapter
* or there was a failure while performing the action.
*/
export function mobileBluetooth(this: import("../driver").AndroidDriver, action: "enable" | "disable" | "unpairAll"): Promise<void>;
export type ADB = import("appium-adb").ADB;
export type AndroidDriver = import("../driver").AndroidDriver;
//# sourceMappingURL=bluetooth.d.ts.map