refactor(vibration):

This commit is contained in:
Guille 2016-07-17 20:22:30 +02:00
parent 81a0696e70
commit 6c0aaa643e

View File

@ -1,4 +1,6 @@
import {Plugin, Cordova} from './plugin'; import { Cordova, Plugin } from './plugin';
/** /**
* @name Vibration * @name Vibration
* @description Vibrates the device * @description Vibrates the device
@ -37,6 +39,6 @@ export class Vibration {
@Cordova({ @Cordova({
sync: true sync: true
}) })
static vibrate(time: number|Array<number>) {} static vibrate(time: number | Array<number>) { }
} }