From aeea03478bbb1f87cefa11d626a97e1f1b3a69b5 Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Fri, 5 May 2017 20:20:20 +0200 Subject: [PATCH] refactor(mixpanel): remove showSurvey (#1469) * Update index.ts * Update index.ts --- src/@ionic-native/plugins/mixpanel/index.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/@ionic-native/plugins/mixpanel/index.ts b/src/@ionic-native/plugins/mixpanel/index.ts index 49d0bce8d..63a608558 100644 --- a/src/@ionic-native/plugins/mixpanel/index.ts +++ b/src/@ionic-native/plugins/mixpanel/index.ts @@ -10,7 +10,7 @@ declare var mixpanel: any; * * @usage * ```typescript - * import { Mixpanel, MixpanelPeople } from '@ionic-native/mixpanel'; + * import { Mixpanel } from '@ionic-native/mixpanel'; * * constructor(private mixpanel: Mixpanel, private mixpanelPeople: MixpanelPeople) { } * @@ -98,13 +98,6 @@ export class Mixpanel extends IonicNativePlugin { }) track(eventName: string, eventProperties?: any): Promise { return; } - /** - * - * @returns {Promise} - */ - @Cordova() - showSurvey(): Promise { return; } - } /** * @hidden