Created
November 26, 2018 09:53
-
-
Save Sajjon/31818f14e7197a882d2380962e739629 to your computer and use it in GitHub Desktop.
Medium article: SLC part 1 - InputType
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
| protocol InputType { | |
| associatedtype FromView | |
| associatedtype FromController | |
| var fromView: FromView { get } | |
| var fromController: FromController { get } | |
| init(fromView: FromView, fromController: FromController) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment