gatsby-plugin-gtag
gatsby-plugin-gtag copied to clipboard
Adding support for tracking custom events
Closes #18
- Adding method for tracking custom events
- Adding ts types
- Updating README with better examples
@flpvsk I'm not a huge fan of creating objects with every tracking event. Any opposition to using:
trackCustomEvent(action: string, args?: TrackCustomEventsArgs)
instead of
trackCustomEvent(args: TrackCustomEventsArgs) // where action is a required object key
@atomicpages Are you still working on this?