From ca845d6b980946f8b77b386435d0e1a394cae262 Mon Sep 17 00:00:00 2001 From: Guille Date: Fri, 8 Jul 2016 00:38:35 +0200 Subject: [PATCH] refactor(ble): --- src/plugins/ble.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/plugins/ble.ts b/src/plugins/ble.ts index c4bf4e7c4..5a7657f2a 100644 --- a/src/plugins/ble.ts +++ b/src/plugins/ble.ts @@ -1,5 +1,5 @@ -import {Plugin, Cordova} from './plugin'; -import {Observable} from 'rxjs/Observable'; +import { Cordova, Plugin } from './plugin'; +import { Observable } from 'rxjs/Observable'; /** * @name BLE @@ -272,7 +272,7 @@ export class BLE { deviceId: string, serviceUUID: string, characteristicUUID: string - ): Promise { return; }; + ): Promise { return; }; /** * Write the value of a characteristic. @@ -308,7 +308,7 @@ export class BLE { serviceUUID: string, characteristicUUID: string, value: ArrayBuffer - ): Promise { return; } + ): Promise { return; } /** * Write the value of a characteristic without waiting for confirmation from the peripheral. @@ -325,7 +325,7 @@ export class BLE { serviceUUID: string, characteristicUUID: string, value: ArrayBuffer - ): Promise { return; } + ): Promise { return; } /** * Register to be notified when the value of a characteristic changes. @@ -351,7 +351,7 @@ export class BLE { deviceId: string, serviceUUID: string, characteristicUUID: string - ): Observable { return; } + ): Observable { return; } /** * Stop being notified when the value of a characteristic changes. @@ -366,7 +366,7 @@ export class BLE { deviceId: string, serviceUUID: string, characteristicUUID: string - ): Promise { return; } + ): Promise { return; } /** * Report the connection status.