Created
July 18, 2019 18:59
-
-
Save quintonpryce/9afbc7b22173d76016f3aa3431257097 to your computer and use it in GitHub Desktop.
EventTracker Protocol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public protocol EventTracker { | |
func track(event: String) | |
func track<T: AnalyticsParameter>(event: String, with parameters: T) | |
func isEventNameSupported(event: String) -> Bool | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment