From 9feefe8454b9e65b5d3111661164d0c70eb5b719 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 17 Sep 2018 15:43:27 +0200 Subject: [PATCH] fix(web-intent): fix lint --- src/@ionic-native/plugins/web-intent/index.ts | 32 ++++++++++++------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/src/@ionic-native/plugins/web-intent/index.ts b/src/@ionic-native/plugins/web-intent/index.ts index 8d34096c8..96588b0f6 100644 --- a/src/@ionic-native/plugins/web-intent/index.ts +++ b/src/@ionic-native/plugins/web-intent/index.ts @@ -61,61 +61,71 @@ export class WebIntent extends IonicNativePlugin { * Convenience constant for actions * @type {string} */ - @CordovaProperty() ACTION_SEND: string; + @CordovaProperty() + ACTION_SEND: string; /** * Convenience constant for actions * @type {string} */ - @CordovaProperty() ACTION_VIEW: string; + @CordovaProperty() + ACTION_VIEW: string; /** * Convenience constant for extras * @type {string} */ - @CordovaProperty() EXTRA_TEXT: string; + @CordovaProperty() + EXTRA_TEXT: string; /** * Convenience constant for extras * @type {string} */ - @CordovaProperty() EXTRA_SUBJECT: string; + @CordovaProperty() + EXTRA_SUBJECT: string; /** * Convenience constant for extras * @type {string} */ - @CordovaProperty() EXTRA_STREAM: string; + @CordovaProperty() + EXTRA_STREAM: string; /** * Convenience constant for extras * @type {string} */ - @CordovaProperty() EXTRA_EMAIL: string; + @CordovaProperty() + EXTRA_EMAIL: string; /** * Convenience constant for actions * @type {string} */ - @CordovaProperty() ACTION_CALL: string; + @CordovaProperty() + ACTION_CALL: string; /** * Convenience constant for actions * @type {string} */ - @CordovaProperty() ACTION_SENDTO: string; + @CordovaProperty() + ACTION_SENDTO: string; /** * Convenience constant for actions * @type {string} */ - @CordovaProperty() ACTION_GET_CONTENT: string; + @CordovaProperty() + ACTION_GET_CONTENT: string; /** * Convenience constant for actions * @type {string} */ - @CordovaProperty() ACTION_PICK: string; + @CordovaProperty() + ACTION_PICK: string; /** * Launches an Android intent @@ -235,7 +245,7 @@ export class WebIntent extends IonicNativePlugin { * @returns {Promise} */ @Cordova() - sendResult({ extras: {}}): Promise { + sendResult({ extras: {} }): Promise { return; } }