Last active
July 26, 2019 19:27
-
-
Save aronbalog/9f49c950d2d52125c679bf8b9253977a to your computer and use it in GitHub Desktop.
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
import Foundation | |
import ARoute | |
protocol RouteProvider { | |
var router: ARoute { get } | |
var routes: [String: ARoutable.Type] { get } | |
var protectedRoutes: [Route] { get } | |
func open(route: Route, transitionType: RouteTransitionType, animated: Bool, parameters: [String: Any]?, embeddingType: RouteEmbeddingType?) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment