From 8eacf8817cbd718f8286d81c4de96860b959866d Mon Sep 17 00:00:00 2001 From: ebeling Date: Tue, 5 May 2020 11:03:27 +0200 Subject: [PATCH] fix(bluetooth-le): change reconnect return signature to Observable fixes #3374 (#3394) --- src/@ionic-native/plugins/bluetooth-le/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/bluetooth-le/index.ts b/src/@ionic-native/plugins/bluetooth-le/index.ts index 0a7078dc01..a73667dd81 100644 --- a/src/@ionic-native/plugins/bluetooth-le/index.ts +++ b/src/@ionic-native/plugins/bluetooth-le/index.ts @@ -569,10 +569,10 @@ export class BluetoothLE extends IonicNativePlugin { * @name reconnect * Reconnect to a previously connected Bluetooth device * @param {{address: string}} params The address/identifier - * @returns {(Observable<{ status: DeviceInfo }>)} + * @returns {(Observable)} */ @Cordova({ callbackOrder: 'reverse', observable: true }) - reconnect(params: { address: string }): Observable<{ status: DeviceInfo }> { + reconnect(params: { address: string }): Observable { return; }