feat(mix panel): add missing events

feat(mix panel): add missing events
This commit is contained in:
Daniel Sogl 2018-03-17 00:31:08 +01:00 committed by GitHub
commit 09e7afb3b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,13 @@ export class Mixpanel extends IonicNativePlugin {
@Cordova()
init(token: string): Promise<any> { return; }
/**
*
* @returns {Promise<any>}
*/
@Cordova()
getSuperProperties(): Promise<any> { return; }
/**
*
* @param superProperties {any}
@ -80,6 +87,22 @@ export class Mixpanel extends IonicNativePlugin {
@Cordova()
registerSuperProperties(superProperties: any): Promise<any> { return; }
/**
*
* @param superProperties {any}
* @returns {Promise<any>}
*/
@Cordova()
registerSuperPropertiesOnce(superProperties: any): Promise<any> { return; }
/**
*
* @param superPropertyName {string}
* @returns {Promise<any>}
*/
@Cordova()
unregisterSuperProperty(superPropertyName: string): Promise<any> { return; }
/**
*
* @returns {Promise<any>}