refactor(ble):

This commit is contained in:
Guille 2016-07-08 00:38:35 +02:00
parent b811fad3a6
commit ca845d6b98

View File

@ -1,5 +1,5 @@
import {Plugin, Cordova} from './plugin'; import { Cordova, Plugin } from './plugin';
import {Observable} from 'rxjs/Observable'; import { Observable } from 'rxjs/Observable';
/** /**
* @name BLE * @name BLE
@ -272,7 +272,7 @@ export class BLE {
deviceId: string, deviceId: string,
serviceUUID: string, serviceUUID: string,
characteristicUUID: string characteristicUUID: string
): Promise<any> { return; }; ): Promise<any> { return; };
/** /**
* Write the value of a characteristic. * Write the value of a characteristic.
@ -308,7 +308,7 @@ export class BLE {
serviceUUID: string, serviceUUID: string,
characteristicUUID: string, characteristicUUID: string,
value: ArrayBuffer value: ArrayBuffer
): Promise<any> { return; } ): Promise<any> { return; }
/** /**
* Write the value of a characteristic without waiting for confirmation from the peripheral. * Write the value of a characteristic without waiting for confirmation from the peripheral.
@ -325,7 +325,7 @@ export class BLE {
serviceUUID: string, serviceUUID: string,
characteristicUUID: string, characteristicUUID: string,
value: ArrayBuffer value: ArrayBuffer
): Promise<any> { return; } ): Promise<any> { return; }
/** /**
* Register to be notified when the value of a characteristic changes. * Register to be notified when the value of a characteristic changes.
@ -351,7 +351,7 @@ export class BLE {
deviceId: string, deviceId: string,
serviceUUID: string, serviceUUID: string,
characteristicUUID: string characteristicUUID: string
): Observable<any> { return; } ): Observable<any> { return; }
/** /**
* Stop being notified when the value of a characteristic changes. * Stop being notified when the value of a characteristic changes.
@ -366,7 +366,7 @@ export class BLE {
deviceId: string, deviceId: string,
serviceUUID: string, serviceUUID: string,
characteristicUUID: string characteristicUUID: string
): Promise<any> { return; } ): Promise<any> { return; }
/** /**
* Report the connection status. * Report the connection status.