Created
November 26, 2018 09:53
-
-
Save Sajjon/90d30b670e097ebcede75f3d533b49b1 to your computer and use it in GitHub Desktop.
Medium article: SLC part 1 - ViewModelType
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 ViewModelType { | |
| associatedtype Input: InputType | |
| associatedtype Output | |
| func transform(input: Input) -> Output | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment