mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 16:52:53 +08:00
feat(mix panel): add missing events
feat(mix panel): add missing events
This commit is contained in:
commit
09e7afb3b4
@ -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>}
|
||||
|
Loading…
Reference in New Issue
Block a user