refactor(mixpanel): remove showSurvey (#1469)

* Update index.ts

* Update index.ts
This commit is contained in:
Daniel Sogl 2017-05-05 20:20:20 +02:00 committed by Ibby Hadeed
parent 4db902b9dd
commit aeea03478b

View File

@ -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<any> { return; }
/**
*
* @returns {Promise<any>}
*/
@Cordova()
showSurvey(): Promise<any> { return; }
}
/**
* @hidden