diff --git a/src/@ionic-native/plugins/bluetooth-le/index.ts b/src/@ionic-native/plugins/bluetooth-le/index.ts index 0a7078dc0..a73667dd8 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; }