-
-
Save uteke/df087344b1a7bb35f9cb81f513a13fc7 to your computer and use it in GitHub Desktop.
Reducer contract interface
This file contains 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
interface Reducer<Mutation, ViewState> { | |
operator fun invoke(mutation: Mutation, currentState: ViewState): ViewState | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment