Skip to content

Commit

Permalink
fix(gatsby-plugin-google-analytics): Update typings (#19684)
Browse files Browse the repository at this point in the history
  • Loading branch information
koss-lebedev authored and LekoArts committed Nov 26, 2019
1 parent ca4a65c commit 524862a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/gatsby-plugin-google-analytics/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ export interface CustomEventArgs {
action: string
label?: string
value?: string
nonInteraction: boolean
transport: "beacon" | "xhr" | "image"
hitCallback: Function
callbackTimeout: Number
nonInteraction?: boolean
transport?: "beacon" | "xhr" | "image"
hitCallback?: Function
callbackTimeout?: Number
}

export function trackCustomEvent(args: CustomEventArgs): void

0 comments on commit 524862a

Please sign in to comment.