2
0
mirror of https://github.com/danielsogl/awesome-cordova-plugins.git synced 2025-03-02 15:23:01 +08:00

refactor(accelerometer):

This commit is contained in:
Guille 2016-07-08 00:53:01 +02:00
parent 6e8248a0b8
commit b7fb2483bf

View File

@ -1,6 +1,7 @@
import {Plugin, Cordova} from './plugin';
import { Cordova, Plugin } from './plugin';
import { Observable } from 'rxjs/Observable';
export interface AccelerationData {
/**
@ -73,9 +74,7 @@ export class DeviceMotion {
* @returns {Promise<any>} Returns object with x, y, z, and timestamp properties
*/
@Cordova()
static getCurrentAcceleration(): Promise<AccelerationData> {
return;
}
static getCurrentAcceleration(): Promise<AccelerationData> { return; }
/**
* Watch the device acceleration. Clear the watch by unsubscribing from the observable.
@ -87,7 +86,5 @@ export class DeviceMotion {
observable: true,
clearFunction: 'clearWatch'
})
static watchAcceleration(options?: AccelerometerOptions): Observable<AccelerationData> {
return;
}
static watchAcceleration(options?: AccelerometerOptions): Observable<AccelerationData> { return; }
}