diff --git a/src/@ionic-native/plugins/index-app-content/index.ts b/src/@ionic-native/plugins/index-app-content/index.ts index 8b08766389..1e65cc3ce6 100644 --- a/src/@ionic-native/plugins/index-app-content/index.ts +++ b/src/@ionic-native/plugins/index-app-content/index.ts @@ -1,5 +1,10 @@ import { Injectable } from '@angular/core'; -import { Cordova, CordovaFunctionOverride, IonicNativePlugin, Plugin } from '@ionic-native/core'; +import { + Cordova, + CordovaFunctionOverride, + IonicNativePlugin, + Plugin +} from '@ionic-native/core'; import { Observable } from 'rxjs'; export interface IndexItem { @@ -16,7 +21,7 @@ export interface IndexItem { /** * Item keywords */ - keywords?: Array < string > ; + keywords?: Array; /** * Lifetime in minutes @@ -78,7 +83,7 @@ export class IndexAppContent extends IonicNativePlugin { * @return {Promise} Returns a promise that resolves with true if indexing is available, false if not */ @Cordova() - isIndexingAvailable(): Promise { + isIndexingAvailable(): Promise { return; } @@ -88,7 +93,7 @@ export class IndexAppContent extends IonicNativePlugin { * @return {Promise} Returns if index set was successfull */ @Cordova() - setItems(items: Array ): Promise < any > { + setItems(items: Array): Promise { return; } @@ -98,7 +103,7 @@ export class IndexAppContent extends IonicNativePlugin { * @return {Promise} Resolve if successfull */ @Cordova() - clearItemsForDomains(domains: Array ): Promise < any > { + clearItemsForDomains(domains: Array): Promise { return; } @@ -108,7 +113,7 @@ export class IndexAppContent extends IonicNativePlugin { * @return {Promise} Resolve if successfull */ @Cordova() - clearItemsForIdentifiers(identifiers: Array < string > ): Promise < any > { + clearItemsForIdentifiers(identifiers: Array): Promise { return; } @@ -118,7 +123,7 @@ export class IndexAppContent extends IonicNativePlugin { * @returns {Observable} returns an observable that notifies you when he user presses on the home screen icon */ @CordovaFunctionOverride() - onItemPressed(): Observable < any > { + onItemPressed(): Observable { return; } diff --git a/tslint.json b/tslint.json index 85b11d0768..d0970aacfa 100644 --- a/tslint.json +++ b/tslint.json @@ -16,9 +16,7 @@ "member-access": false, "adjacent-overload-signatures": false, "no-angle-bracket-type-assertion": false, - "space-within-parens": false, "no-irregular-whitespace": false, - "no-duplicate-imports": false, "no-constant-condition": false } }