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; } }