From fcd6d26727a5a3d45ca90a75d8c5b58bad0c1204 Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Tue, 25 Sep 2018 17:11:43 +0200 Subject: [PATCH] fix(keyboard): add missing property --- src/@ionic-native/plugins/keyboard/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/keyboard/index.ts b/src/@ionic-native/plugins/keyboard/index.ts index 76fbe5879..2ba74afdd 100644 --- a/src/@ionic-native/plugins/keyboard/index.ts +++ b/src/@ionic-native/plugins/keyboard/index.ts @@ -59,12 +59,13 @@ export class Keyboard extends IonicNativePlugin { /** * Programmatically set the resize mode + * @param mode {string} */ @Cordova({ sync: true, 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.