docs(): fix type

This commit is contained in:
Ibby Hadeed 2017-07-03 07:22:20 -04:00
parent da0fd821f7
commit 7cb95f1b91
No known key found for this signature in database
GPG Key ID: FAFF5A8210728800

View File

@ -164,12 +164,12 @@ export class MusicControls extends IonicNativePlugin {
/** /**
* Update elapsed time, optionally toggle play/pause: * Update elapsed time, optionally toggle play/pause:
* @param args {elapsed: string, isPlaying: boolean} * @param args {Object}
*/ */
@Cordova({ @Cordova({
platforms: ['iOS'] platforms: ['iOS']
}) })
updateElapsed(args: object): void { } updateElapsed(args: { elapsed: string; isPlaying: boolean; }): void { }
/** /**
* Toggle dismissable: * Toggle dismissable: