Skip to content

Commit

Permalink
fix optional parameter dispatchPeriod on TS
Browse files Browse the repository at this point in the history
  • Loading branch information
victorsosa committed Dec 7, 2016
1 parent 2f6ee63 commit 7c3833e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript/analytics.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ declare class UniversalAnalyticsPlugin {

/** In your 'deviceready' handler, call this to set up your Analytics tracker,
where id is your Google Analytics Mobile App property */
public startTrackerWithId(id:String, dispatchPeriod:Number, successCallback?:Function, errorCallback?:Function):void;
public startTrackerWithId(id:String, dispatchPeriod?:Number, successCallback?:Function, errorCallback?:Function):void;

/** Sets a UserId */
public setUserId(id:String, successCallback?:Function, errorCallback?:Function):void;
Expand Down

0 comments on commit 7c3833e

Please sign in to comment.