style(): missing semicolon

This commit is contained in:
Ibby 2017-01-24 15:00:43 -05:00
parent 1c09ee1fbc
commit 68c535fd79

View File

@ -52,7 +52,7 @@ export class ScreenOrientation {
* @returns {Promise<any>} returns a promise that resolves when the screen orientation is locked, and rejects when an error occurs. * @returns {Promise<any>} returns a promise that resolves when the screen orientation is locked, and rejects when an error occurs.
*/ */
@Cordova({ otherPromise: true }) @Cordova({ otherPromise: true })
static lockOrientation(orientation: string): Promise<string> { return } static lockOrientation(orientation: string): Promise<string> { return; }
/** /**
* Unlock and allow all orientations. * Unlock and allow all orientations.