Skip to content

Commit

Permalink
fix(mixpanel): implement CordovaProperty correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Aug 27, 2016
1 parent 6612764 commit dd0c9ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/mixpanel.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {Plugin, Cordova, CordovaProperty} from './plugin';
declare var mixpanel: any;
/**
* @name Mixpanel
* @description
Expand Down Expand Up @@ -93,7 +94,7 @@ export class Mixpanel {
* @returns {MixpanelPeople}
*/
@CordovaProperty
static people: MixpanelPeople;
static get people(): MixpanelPeople {return mixpanel.people; };

}
export declare class MixpanelPeople {
Expand Down

0 comments on commit dd0c9ba

Please sign in to comment.