From b5e04cca20394e07632841b3c5e8c1d653847b1d Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Fri, 23 Mar 2018 15:38:45 +0100 Subject: [PATCH] refactor(device-feedback): rename interface --- src/@ionic-native/plugins/device-feedback/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/device-feedback/index.ts b/src/@ionic-native/plugins/device-feedback/index.ts index 132c523f..ee7a18cc 100644 --- a/src/@ionic-native/plugins/device-feedback/index.ts +++ b/src/@ionic-native/plugins/device-feedback/index.ts @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; -export interface DeviceFeedbackEnabled { +export interface DeviceFeedbackStatus { /** Haptic Feedback */ haptic: boolean; @@ -67,7 +67,7 @@ export class DeviceFeedback extends IonicNativePlugin { * @returns {Promise} */ @Cordova() - isFeedbackEnabled(): Promise { + isFeedbackEnabled(): Promise { return; } }