fix(keyboard): add missing property

This commit is contained in:
Daniel Sogl 2018-09-25 17:11:43 +02:00 committed by GitHub
parent f95003cbe1
commit fcd6d26727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,12 +59,13 @@ export class Keyboard extends IonicNativePlugin {
/** /**
* Programmatically set the resize mode * Programmatically set the resize mode
* @param mode {string}
*/ */
@Cordova({ @Cordova({
sync: true, sync: true,
platforms: ['iOS'] platforms: ['iOS']
}) })
setResizeMode(): void {} setResizeMode(mode: string): void {}
/** /**
* Creates an observable that notifies you when the keyboard is shown. Unsubscribe to observable to cancel event watch. * Creates an observable that notifies you when the keyboard is shown. Unsubscribe to observable to cancel event watch.