fix(music-controls): fix return types for methods

This commit is contained in:
Ibby 2017-03-20 16:18:55 -04:00
parent d845519361
commit f3407e5582

View File

@ -137,13 +137,13 @@ export class MusicControls {
* Toggle play/pause:
* @param isPlaying {boolean}
*/
@Cordova({sync: true})
@Cordova()
static updateIsPlaying(isPlaying: boolean): void {}
/**
* Toggle dismissable:
* @param dismissable {boolean}
*/
@Cordova({sync: true})
@Cordova()
static updateDismissable(dismissable: boolean): void {}
}