mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-07 23:03:19 +08:00
Update mixpanel
Added events: getSuperProperties, registerSuperPropertiesOnce, unregisterSuperProperty
This commit is contained in:
parent
9ebd92ecb9
commit
4fc97037ac
@ -72,6 +72,13 @@ export class Mixpanel extends IonicNativePlugin {
|
|||||||
@Cordova()
|
@Cordova()
|
||||||
init(token: string): Promise<any> { return; }
|
init(token: string): Promise<any> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @returns {Promise<any>}
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
getSuperProperties(): Promise<any> { return; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param superProperties {any}
|
* @param superProperties {any}
|
||||||
@ -80,6 +87,22 @@ export class Mixpanel extends IonicNativePlugin {
|
|||||||
@Cordova()
|
@Cordova()
|
||||||
registerSuperProperties(superProperties: any): Promise<any> { return; }
|
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>}
|
* @returns {Promise<any>}
|
||||||
|
Loading…
Reference in New Issue
Block a user